-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapmake_fo_lineattack.go
144 lines (132 loc) · 4.72 KB
/
mapmake_fo_lineattack.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// Copyright 2014,2015,2016,2017,2018,2019,2020,2021 SeukWon Kang (kasworld@gmail.com)
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package terrain
import (
"fmt"
"github.com/kasworld/goguelike-single/enum/decaytype"
"github.com/kasworld/goguelike-single/enum/fieldobjdisplaytype"
"github.com/kasworld/goguelike-single/game/fieldobject"
"github.com/kasworld/goguelike-single/game/terrain/roomsort"
"github.com/kasworld/goguelike-single/lib/g2log"
"github.com/kasworld/goguelike-single/lib/scriptparse"
)
func cmdAddRotateLineAttack(tr *Terrain, ca *scriptparse.CmdArgs) error {
var x, y int
var dispType fieldobjdisplaytype.FieldObjDisplayType
var decay decaytype.DecayType
var degree, perturn int
var winglen, wingcount int
var message string
if err := ca.GetArgs(&x, &y, &dispType, &winglen, &wingcount, °ree, &perturn, &decay, &message); err != nil {
return err
}
return tr.addRotateLineAttack(x, y, dispType, winglen, wingcount, degree, perturn, decay, message)
}
func cmdAddRotateLineAttackRand(tr *Terrain, ca *scriptparse.CmdArgs) error {
var dispType fieldobjdisplaytype.FieldObjDisplayType
var decay decaytype.DecayType
var degree, perturn int
var winglen, wingcount int
var count int
var message string
if err := ca.GetArgs(&count, &dispType, &winglen, &wingcount, °ree, &perturn, &decay, &message); err != nil {
return err
}
try := count
for count > 0 && try > 0 {
err := tr.addRotateLineAttackRand(dispType, winglen, wingcount, degree, perturn, decay, message)
if err == nil {
count--
} else {
try--
}
}
if try == 0 {
g2log.Debug("AddRotateLineAttackRand add insufficient")
}
return nil
}
func cmdAddRotateLineAttackRandInRoom(tr *Terrain, ca *scriptparse.CmdArgs) error {
var dispType fieldobjdisplaytype.FieldObjDisplayType
var decay decaytype.DecayType
var degree, perturn int
var winglen, wingcount int
var count int
var message string
if err := ca.GetArgs(&count, &dispType, &winglen, &wingcount, °ree, &perturn, &decay, &message); err != nil {
return err
}
try := count
for count > 0 && try > 0 {
err := tr.addRotateLineAttackRandInRoom(dispType, winglen, wingcount, degree, perturn, decay, message)
if err == nil {
count--
} else {
try--
}
}
if try == 0 {
g2log.Debug("AddRotateLineAttackRand add insufficient")
}
return nil
}
func (tr *Terrain) addRotateLineAttack(
x, y int, dispType fieldobjdisplaytype.FieldObjDisplayType,
winglen, wingcount int, degree, perturn int, decay decaytype.DecayType,
message string) error {
x, y = x%tr.Xlen, y%tr.Ylen
if !tr.canPlaceFieldObjAt(x, y) {
return fmt.Errorf("can not add RotateLineAttack at NonCharPlaceable tile %v %v", x, y)
}
po := fieldobject.NewRotateLineAttack(tr.Name, dispType, winglen, wingcount, degree, perturn, decay, message)
tr.foPosMan.AddToXY(po, x, y)
if r := tr.roomManager.GetRoomByPos(x, y); r != nil {
r.RotateLineAttackCount++
}
return nil
}
func (tr *Terrain) addRotateLineAttackRand(
dispType fieldobjdisplaytype.FieldObjDisplayType,
winglen, wingcount int, degree, perturn int, decay decaytype.DecayType,
message string) error {
for try := 10; try > 0; try-- {
x, y := tr.rnd.Intn(tr.Xlen), tr.rnd.Intn(tr.Ylen)
if !tr.canPlaceFieldObjAt(x, y) {
continue
}
return tr.addRotateLineAttack(x, y, dispType, winglen, wingcount, degree, perturn, decay, message)
}
return fmt.Errorf("fail to addRotateLineAttackRand at NonCharPlaceable tile")
}
func (tr *Terrain) addRotateLineAttackRandInRoom(
dispType fieldobjdisplaytype.FieldObjDisplayType,
winglen, wingcount int, degree, perturn int, decay decaytype.DecayType,
message string) error {
if tr.roomManager.GetCount() == 0 {
return fmt.Errorf("no room to add RotateLineAttack")
}
roomList := tr.roomManager.GetRoomList()
for try := 100; try > 0; try-- {
tr.rnd.Shuffle(len(roomList), func(i, j int) {
roomList[i], roomList[j] = roomList[j], roomList[i]
})
rList := roomsort.ByRotateLineAttackCount(roomList)
rList.Sort()
r := rList[0]
x := tr.rnd.IntRange(r.Area.X, r.Area.X+r.Area.W)
y := tr.rnd.IntRange(r.Area.Y, r.Area.Y+r.Area.H)
if !tr.canPlaceFieldObjAt(x, y) {
continue
}
return tr.addRotateLineAttack(x, y, dispType, winglen, wingcount, degree, perturn, decay, message)
}
return fmt.Errorf("cannot find pos in room")
}