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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
|
#include "gst.h"
#include <map>
#include <iostream>
Player& Gst::get_player (int id) {
for (auto &player : players) {
if (id == player.id) return player;
}
}
Tech* Gst::get_tech (int id) {
for (auto &tech : techs) {
if (id == tech.id) return &tech;
}
}
EntityInfo* Gst::get_info (std::string name) {
for (EntityInfo &info : infos) {
if (name == info.name) return &info;
}
}
EntityInfo* Gst::get_info (int id) {
for (EntityInfo &info : infos) {
if (id == info.id) return &info;
}
}
bool Gst::info_has_ability (EntityInfo* info, std::string name) {
for (int ab : info->abilities) {
if (abilities[ab].name == name) return true;
}
return false;
}
Entity& Gst::get_at (int x, int y) {
for (Entity &e : entities) {
if (e.x ==x && e.y == y) return e;
}
}
std::vector<float> Gst::get_cost (EntityInfo *info, Player &player) {
std::vector<float> cost = info->cost;
for (int i=0; i<info->cost.size(); i++) {
cost[i] *= 1+player.tech_lookup.id(info->id).cost[i];
cost[i] += player.tech_lookup.id(info->id).cost_abs[i];
}
return cost;
}
float Gst::get_trade_rate (Player &player) {
float rate = 250;
rate -= player.tech_lookup.id(0).trade * 25;
return rate;
}
float Gst::get_type_bonus (Entity &atk, Entity &def) {
float b = 0;
switch(atk.info->ent_class) {
case EntityInfo::Class::inf:
if (def.info->ent_class == EntityInfo::Class::bld) b += 1.0f/3.0f;
if (def.info->ent_class == EntityInfo::Class::sie) b += 1.0f/3.0f;
break;
case EntityInfo::Class::cav:
if (def.info->ent_class == EntityInfo::Class::bld) b += -0.5;
if (def.info->ent_class == EntityInfo::Class::inf) b += 1.0f/3.0f;
if (def.info->ent_class == EntityInfo::Class::ran) b += 1.0f/3.0f;
break;
case EntityInfo::Class::ran:
if (def.info->ent_class == EntityInfo::Class::bld) b += -0.5f;
break;
case EntityInfo::Class::sie:
if (def.info->ent_class == EntityInfo::Class::bld) b += +0.5f;
break;
}
return b;
}
std::vector<Bonus> Gst::get_bonuses (Entity &atk, Entity &def) {
std::vector<Bonus> bs;
if (tiles[ground.tiles[ground.at(atk.x, atk.y)]].attack_bonus != 0) {
bs.emplace_back(
tiles[ground.tiles[ground.at(atk.x, atk.y)]].attack_bonus,
Bonus::Id::ground, true);
}
if (tiles[ground.tiles[ground.at(def.x, def.y)]].defence_bonus != 0) {
bs.emplace_back(
tiles[ground.tiles[ground.at(def.x, def.y)]].defence_bonus,
Bonus::Id::ground, false);
}
if (get_type_bonus(atk, def) != 0) {
bs.emplace_back(get_type_bonus(atk, def), Bonus::Id::type, true);
}
if (get_type_bonus(def, atk) != 0) {
bs.emplace_back(get_type_bonus(def, atk), Bonus::Id::type, false);
}
if (info_has_ability(atk.info, "Causes Fear"))
bs.emplace_back(-1.0f/3, Bonus::Id::ability, false);
if (info_has_ability(def.info, "Causes Fear"))
bs.emplace_back(-1.0f/3, Bonus::Id::ability, true);
if (info_has_ability(atk.info, "Anti-Cavalry"))
bs.emplace_back(4.0f/3, Bonus::Id::ability, true);
if (info_has_ability(def.info, "Anti-Cavalry"))
bs.emplace_back(4.0f/3, Bonus::Id::ability, false);
if (info_has_ability(atk.info, "Desert Charge")
&& !info_has_ability(def.info, "Desert Charge")
&& tiles[ground.tiles[ground.at(def.x, def.y)]].name == "Desert")
bs.emplace_back(1.0f/3, Bonus::Id::ability, true);
if (info_has_ability(atk.info, "Plains Charge")
&& !info_has_ability(def.info, "Plains Charge")
&& tiles[ground.tiles[ground.at(def.x, def.y)]].name == "Plains")
bs.emplace_back(1.0f/3, Bonus::Id::ability, true);
if (info_has_ability(atk.info, "Woodsman")
&& !info_has_ability(def.info, "Woodsman")
&& tiles[ground.tiles[ground.at(def.x, def.y)]].name == "Forest")
bs.emplace_back(1.0f/3, Bonus::Id::ability, true);
if (info_has_ability(atk.info, "Volley") && atk.hp >= 50)
bs.emplace_back(1.0f/3, Bonus::Id::ability, true);
if (info_has_ability(atk.info, "Frenzy"))
bs.emplace_back(1/atk.hp, Bonus::Id::ability, true);
Player &player_atk = players[atk.owner];
Player &player_def = players[def.owner];
float tech_attack = player_atk.tech_lookup.id(atk.info->id).attack;
if (tech_attack != 0)
bs.emplace_back(tech_attack, Bonus::Id::tech, true);
float tech_defence = player_def.tech_lookup.id(def.info->id).defence;
if (tech_defence != 0)
bs.emplace_back(tech_defence, Bonus::Id::tech, false);
return bs;
}
float Gst::get_damage (Entity &atk, Entity &def, float atk_hp) {
float atkmul = 1;
float defmul = 1;
auto bonuses = get_bonuses(atk, def);
for (auto bonus : bonuses) {
if (bonus.atk) { atkmul += bonus.amt; }
else { defmul += bonus.amt; }
}
float dam = (atk.info->attack * atk_hp * atkmul)
/ (2.0f*def.info->defence * defmul);
return dam;
}
float Gst::get_damage (Entity &atk, Entity &def) {
return get_damage(atk, def, atk.hp);
}
bool Gst::get_first_strike (Entity &atk, Entity &def) {
bool fs { false };
fs = info_has_ability(atk.info, "First Strike");
return fs;
}
float clamp_hp (float hp) {
if (hp > 100) hp = 100;
if (hp < 0) hp = 0;
return hp;
}
BattleResult Gst::battle_res (Entity &atk, Entity &def) {
BattleResult result { atk.hp, def.hp };
bool first_strike_atk = info_has_ability(atk.info, "First Strike");
bool first_strike_def = info_has_ability(def.info, "First Strike");
bool skirmish_atk = info_has_ability(atk.info, "Skirmish");
bool skirmish_def = info_has_ability(def.info, "Skirmish");
bool anticav_atk = info_has_ability(atk.info, "Anti-Cavalry");
bool anticav_def = info_has_ability(def.info, "Anti-Cavalry");
first_strike_atk = first_strike_atk
|| (skirmish_atk && def.info->range == 1);
first_strike_def = first_strike_def
|| (skirmish_def && atk.info->range == 1);
first_strike_atk = first_strike_atk
|| (anticav_atk && def.info->ent_class == EntityInfo::Class::cav);
first_strike_def = first_strike_def
|| (anticav_def && atk.info->ent_class == EntityInfo::Class::cav);
int dist = abs(atk.x-def.x) + abs(atk.y-def.y);
bool def_inrange = (dist <= get_range(def)) ? true : false;
bool swap = false;
if (first_strike_def && !first_strike_atk) swap = true;
if (swap) {
if (def_inrange) {
result.atk_hp = clamp_hp(
result.atk_hp - get_damage(def, atk, result.def_hp));
}
if (!info_has_ability(atk.info, "No Counter"))
if (result.atk_hp > 0)
result.def_hp = clamp_hp(
result.def_hp - get_damage(atk, def, result.atk_hp));
} else {
result.def_hp = clamp_hp(
result.def_hp - get_damage(atk, def, result.atk_hp));
if (!info_has_ability(def.info, "No Counter") && def_inrange)
if (result.def_hp > 0)
result.atk_hp = clamp_hp(
result.atk_hp - get_damage(def, atk, result.def_hp));
}
if (info_has_ability(atk.info, "Rapid Fire"))
if (result.def_hp > 0)
result.def_hp = clamp_hp(
result.def_hp - get_damage(atk, def, result.def_hp));
if (info_has_ability(def.info, "Rapid Fire") && def_inrange)
if (result.atk_hp > 0)
result.atk_hp = clamp_hp(
result.atk_hp - get_damage(def, atk, result.def_hp));
if (result.atk_hp > 0 && info_has_ability(atk.info, "Zeal"))
result.atk_hp = clamp_hp(result.atk_hp + 20);
if (result.def_hp > 0 && info_has_ability(def.info, "Zeal"))
result.def_hp = clamp_hp(result.def_hp + 20);
return result;
}
void Gst::battle (Entity &atk, Entity &def) {
std::cout << "! attack " << atk.info->name << "(hp:" << atk.hp << "), "
<< def.info->name << "(hp:" << def.hp << ") \n";
auto result = battle_res(atk, def);
atk.hp = result.atk_hp;
def.hp = result.def_hp;
std::cout << "! result " << atk.info->name << "(hp:" << atk.hp << "), "
<< def.info->name << "(hp:" << def.hp << ") \n";
clear_dead();
}
void Gst::clear_dead() {
auto i = std::begin(entities);
while (i != std::end(entities)) {
if (i->hp <= 0) {
entities.erase(i);
}
else i++;
}
}
int Gst::get_range (Entity &ent) {
int range = ent.info->range;
if (range > 1) {
range += tiles[ground.tiles[ground.at(ent.x, ent.y)]].range_bonus;
}
if (range < 1) range = 1;
return range;
}
std::vector<int> Gst::get_possible_builds (Entity &ent) {
std::vector<int> builds;
for (int id : ent.info->build) {
if (check_req_build(ent, get_info(id))) {
builds.push_back(id);
}
}
return builds;
}
bool Gst::check_req_build(Entity &ent, EntityInfo *info) {
Player &player = players[ent.owner];
if (player.level < info->level) return false;
for (int id : info->adjacent) {
bool adj = false;
for (Entity &e : entities) {
if (e.info->id == id && ent.owner == e.owner) {
int dist = abs(e.x-ent.x) + abs(e.y-ent.y);
if (dist == 1) {
adj = true;
}
}
}
if (!adj) return false;
}
if (info->id == 100) {
for (Resource &r : ground.resources) {
if (r.pos == ground.at(ent.x, ent.y)) {
return false;
}
}
int mindist = 9999;
for (Entity &e : entities) {
if (e.info->id == 100 && ent.owner == e.owner) {
int dist = abs(e.x-ent.x) + abs(ent.y-e.y);
if (dist < mindist) {
mindist = dist;
}
}
}
std::cout << " " << mindist;
if (mindist < 5) {
return false;
}
return true;
}
if (info->id == 101) {
for (Resource &r : ground.resources) {
if (r.kind == Resource::Type::food
&& r.pos == ground.at(ent.x, ent.y)) {
return true;
}
}
return false;
}
if (info->id == 102) {
for (Resource &r : ground.resources) {
if (r.kind == Resource::Type::gold
&& r.pos == ground.at(ent.x, ent.y)) {
return true;
}
}
return false;
}
return true;
}
bool Gst::check_req_train (Entity &ent, EntityInfo *info) {
Player &player = players[ent.owner];
if (player.level < info->level) return false;
return true;
}
bool Gst::check_req_tech (Tech *tech, Player &player) {
if (player.leveling_up == 1) return false;
if (tech->level > player.level) {
return false;
}
if (tech->cost[0] > player.res[0]
|| tech->cost[1] > player.res[1] )
{
return false;
}
if (player.has_tech(tech->id)) {
return false;
}
bool req_id = false;
for (auto &ent : entities) {
if (ent.owner == turn // WARNING: turn is not player.id
&& ent.info->id == tech->req_id
&& ent.building == 0)
{
req_id = true;
break;
}
}
if (!req_id) {
return false;
}
return true;
}
bool Gst::check_req_level (Player &player) {
if (player.leveling_up == 1) return false;
for (float v : player.res) {
if (v <= (player.level+1)*500) return false;
}
std::map<int, int> lv_techs;
for (int id : player.techs) lv_techs[get_tech(id)->level] ++;
if (player.level == 0) {
if (lv_techs[0] >= 3) return true;
}
if (player.level == 1) {
if (lv_techs[1] >= 7) return true;
}
if (player.level == 2) {
if (lv_techs[2] >= 11) return true;
}
return false;
}
bool Gst::check_obstructed (Entity &ent) {
for (Entity &e : entities) {
if (&ent != &e && e.x == ent.x && ent.y == e.y) return true;
}
return false;
}
void Gst::end_day () {
turn++;
if (turn >= players.size()) {
turn = 0;
day++;
}
Player &player = players[turn];
if (player.leveling_up != -1) {
level_upgrade(player);
player.level ++;
player.leveling_up = -1;
}
for (Entity &e : entities) {
e.done = false;
e.moved = 0;
if (get_player(e.owner) == player) {
for (int i=0; i<player.res.size(); i++) {
player.res[i] += e.info->prod[i] *
(1+player.tech_lookup.id(e.info->id).prod[i]);
}
if (e.building < 0) {
e.building++;
if (e.building == 0) {
e.hp = clamp_hp(e.hp + 50);
}
}
if (e.info->unit == 1 && check_obstructed(e)) {
e.hp = clamp_hp(e.hp + 20);
}
}
}
if (player.researching != -1) {
player.techs.push_back(player.researching);
update_tech_lookup(player);
player.researching = -1;
}
}
void Gst::level_upgrade (Player &player) {
for (Entity &e : entities) {
if (get_player(e.owner) == player) {
if (e.info->upgrade != -1 && e.info->level == player.level) {
e.info = get_info(e.info->upgrade);
}
}
}
}
void Gst::update_tech_lookup (Player &player) {
player.tech_lookup.map_id.clear();
for (int i : player.techs) {
Tech *tech = get_tech(i);
std::vector<int> ids { };
if (tech->bonus.aff_id.size() > 0) {
ids = tech->bonus.aff_id;
} else {
if (tech->bonus.aff_level != -1) {
for (EntityInfo info : infos) {
if (info.level == tech->bonus.aff_level) {
ids.push_back(info.id);
}
}
}
if (tech->bonus.aff_class.size() > 0) {
for (EntityInfo info : infos) {
auto &cls = tech->bonus.aff_class;
if (std::find(cls.begin(), cls.end(),
info.ent_class) != cls.end())
{
ids.push_back(info.id);
}
}
}
if (tech->bonus.aff_all == 1) {
for (EntityInfo info : infos) {
ids.push_back(info.id);
}
}
}
for (int id : ids) {
player.tech_lookup.map_id[id] =
player.tech_lookup.map_id[id] + tech->bonus;
}
}
}
|