-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneticworld.cpp
484 lines (427 loc) · 13.2 KB
/
geneticworld.cpp
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
#include "geneticworld.h"
inline int floorDivision(int x, int y) {
return floor(static_cast<float>(x) / static_cast<float>(y));
}
GeneticWorld::~GeneticWorld() {
qDeleteAll(bots);
bots.clear();
killedBots.clear();
}
void GeneticWorld::deadBot2Alive(Bot* bot) {
bot->type = ALIVE;
bot->direction = 0;
bot->minerals = 0;
bot->iterator = 0;
bot->old = 0;
if (bot->monitoring) {
emit bot->botKilled();
bot->monitoring = false;
}
bot->usedPhotosynthesis = 0, bot->usedMinerals = 0, bot->usedEat = 0;
bot->mineralsCount = 0, bot->photosynthesisCount = 0, bot->eatCount = 0;
int res = killedBots.remove(bot);
assert(res);
}
Bot *GeneticWorld::newBot(QPoint xy) {
Bot *bot;
int block = checkCoords(xy);
switch (block) {
case ERROR:
case BOT: return nullptr;
case DEADBOT:
bot = bots.value(hashxy(xy));
deadBot2Alive(bot);
break;
case NULLBLOCK:
bot = new Bot(genomeLen, xy);
ulong hash = bot->getHash();
//botsMutex.lock();
bots[hash] = bot;
//botsMutex.unlock();
break;
}
aliveBotsCount++;
return bot;
}
inline void GeneticWorld::eatBot(Bot *bot, bool noOrganic) {
if (bot->type != ALIVE) return;
if (organicEnabled && !noOrganic) {
bot->type = ORGANIC;
bot->old = 0;
} else {
clearOrganic(bot);
}
aliveBotsCount--;
}
inline void GeneticWorld::clearOrganic(Bot *bot) {
bot->type = DEAD;
killedBots << bot;
}
inline uint GeneticWorld::botPart(Bot *bot) {
return floorDivision(bot->getY(), partLength);
}
float GeneticWorld::getPhotosynthesisCoefficient() {
float coeff = ((1+qCos(2.*generation/generationsInYear*M_PI))/2);
return minPhotosynthesisCoefficient + coeff * (1-minPhotosynthesisCoefficient);
}
uint GeneticWorld::getPhotosynthesisEnergy(int y) {
uint part = floorDivision(y, partLength);
if (part >= (worldPartsCount - startWorldPhotosynthesisEnergy)) {
float energy = startWorldPhotosynthesisEnergy - (worldPartsCount - part) + 1;
energy *= getPhotosynthesisCoefficient();
return floor(energy);
}
return 0;
}
uint GeneticWorld::getMineralsCount(uint y) {
uint part = floorDivision(y, partLength);
if (part < mineralsPartSize*startWorldMinerals)
return startWorldMinerals-floorDivision(part, mineralsPartSize);
return 0;
}
bool GeneticWorld::checkSimilarity(Bot *bot1, Bot *bot2) {
int differencesCount = 0;
for (int i = 0; i<genomeLen; i++) {
if (bot1->genome[i] != bot2->genome[i]) differencesCount++;
if (differencesCount > 1) return false;
}
return true;
}
void GeneticWorld::translateCoords(QPoint &xy) {
if (xy.x() >= maxX) xy.setX(0);
if (xy.x() < 0) xy.setX(maxX-1);
}
QPoint GeneticWorld::oppositeBot(Bot *bot) {
QPoint xy = bot->getXY();
switch (bot->direction) {
case UP: {
xy.ry()++;
break;
}
case UP_RIGHT: {
xy.rx()++;
xy.ry()++;
break;
}
case RIGHT: {
xy.rx()++;
break;
}
case RIGHT_DOWN: {
xy.rx()++;
xy.ry()--;
break;
}
case DOWN: {
xy.ry()--;
break;
}
case DOWN_LEFT: {
xy.rx()--;
xy.ry()--;
break;
}
case LEFT: {
xy.rx()--;
break;
}
case LEFT_UP: {
xy.rx()--;
xy.ry()++;
break;
}
default: {
assert(false);
}
}
translateCoords(xy);
return xy;
}
int GeneticWorld::checkCoords(QPoint xy) {
if (xy.y() < 0 || xy.y() >= maxY) return ERROR;
ulong hash = hashxy(xy);
if (bots.contains(hash)) {
Bot* bot = bots.value(hash);
if (bot->type == ALIVE || bot->type == ORGANIC) return BOT;
return DEADBOT;
}
return NULLBLOCK;
}
bool GeneticWorld::reproduction(Bot *bot) {
QPoint xy = oppositeBot(bot);
if (bot->energy<reproductionPrice) return false;
int energy = bot->energy/2;
bot->energy -= energy;
bot->energy -= reproductionPrice;
Bot *new_bot = newBot(xy);
if (new_bot == nullptr) return false;
new_bot->energy = energy;
new_bot->direction = bot->direction;
new_bot->genome = QList(bot->genome);
//copy genome and mutate
int k;
float random = rand()/(RAND_MAX + 1.);
if (random < botMutateChance) {
int index = rand() % genomeLen;
new_bot->genome[index] += rand()%(mutateGenRange*2)-mutateGenRange;
}
new_bot->genomeStatisticInit();
return true;
}
void GeneticWorld::moveBot(Bot *bot, QPoint xy) {
//botsMutex.lock();
bots.remove(bot->getHash());
bot->move(xy);
bots[bot->getHash()] = bot;
//botsMutex.unlock();
}
void GeneticWorld::organicStep(Bot *bot) {
bot->energy--;
if (bot->energy <= 0) {
clearOrganic(bot);
return;
}
QPoint xy = bot->getXY();
xy.ry()--;
if (checkCoords(xy) == NULLBLOCK)
moveBot(bot, xy);
}
void GeneticWorld::mutateBotGenome(Bot *bot) {
for (int i = 0; i<mutateAttackCount; i++) {
int index = rand() % genomeLen;
bot->genome[index] += rand()%(mutateGenRange*2)-mutateGenRange;
}
bot->genomeStatisticInit();
}
void GeneticWorld::botStep(Bot *bot) {
int command = bot->genome[bot->iterator];
switch (command) {
case commands::reproduction: {
if (!reproduction(bot)) eatBot(bot);
bot->energy--;
break;
}
case commands::photosynthesis: {
bot->usedPhotosynthesis++;
uint new_energy = getPhotosynthesisEnergy(bot->getY());
bot->energy += new_energy;
bot->energy--;
break;
}
case commands::minerals: {
bot->usedMinerals++;
uint new_minerals = getMineralsCount(bot->getY());
bot->minerals += new_minerals;
bot->energy--;
break;
}
case commands::convert_minerals: {
if (bot->minerals <= 0) break;
bot->energy += bot->minerals*mineralPrice;
bot->minerals = 0;
bot->energy--;
break;
}
case commands::left: {
if (bot->direction == 0) bot->direction = 7;
else bot->direction--;
bot->energy--;
break;
}
case commands::right: {
bot->direction++;
bot->direction %= 8;
bot->energy--;
break;
}
case commands::step: {
QPoint xy = oppositeBot(bot);
if (checkCoords(xy) == NULLBLOCK)
moveBot(bot, xy);
bot->energy--;
break;
}
case commands::eat: {
QPoint xy = oppositeBot(bot);
ulong target_hash = hashxy(xy);
Bot* target_bot = bots.value(target_hash, nullptr);
if (target_bot != nullptr) {
if (target_bot->type == ORGANIC) {
bot->energy += target_bot->energy;
clearOrganic(target_bot);
bot->usedEat++;
}
}
bot->energy--;
break;
}
case commands::steal: {
QPoint xy = oppositeBot(bot);
ulong target_hash = hashxy(xy);
Bot* target_bot = bots.value(target_hash, nullptr);
if (target_bot != nullptr) {
Bot* targetBot = bots.value(target_hash);
if (targetBot->type == ALIVE) {
if (bot->minerals >= targetBot->minerals) {
bot->minerals -= targetBot->minerals;
targetBot->minerals = 0;
bot->energy += targetBot->energy * steal_coeff;
eatBot(targetBot, true);
} else {
targetBot->minerals -= bot->minerals;
bot->minerals = 0;
//bot->energy += targetBot->energy * steal_coeff;
//targetBot->energy *= 1.-steal_coeff;
}
bot->usedEat++;
}
}
bot->energy--;
break;
}
case commands::share: {
bot->iterator++;
int energy = 100*abs(bot->genome[bot->iterator%genomeLen]);
QPoint xy = oppositeBot(bot);
ulong target_hash = hashxy(xy);
Bot* target_bot = bots.value(target_hash, nullptr);
if (target_bot != nullptr) {
Bot* target_bot = bots.value(target_hash);
target_bot->energy += energy;
bot->energy -= energy;
}
bot->energy--;
break;
}
case commands::check: { // 1 - similarity bot, 2 - bot, 3 - organic, 4 - null, 5 - error
QPoint xy = oppositeBot(bot);
int target_block = checkCoords(xy);
if (target_block == DEADBOT || target_block == NULLBLOCK) {
bot->iterator += 3;
break;
}
if (target_block == ERROR) {
bot->iterator += 4;
break;
}
// bot:
ulong target_hash = hashxy(xy);
if (bots.contains(target_hash)) {
Bot *targetBot = bots.value(target_hash);
if (targetBot->type == ORGANIC) {
bot->iterator += 2;
} else if (targetBot->type == ALIVE) {
if (!checkSimilarity(bot, targetBot)) bot->iterator++;
}
}
break;
}
case commands::align: {
Direction randDir = rand()%2 ? LEFT : RIGHT;
bot->direction = randDir;
bot->energy--;
break;
}
case commands::check_my_energy: {
bot->iterator++;
int checkableEnergy = 100*abs(bot->genome[bot->iterator%genomeLen]);
if (bot->energy >= checkableEnergy) bot->iterator++;
break;
}
case commands::check_my_level: {
bot->iterator++;
int checkableLevel = abs(bot->genome[bot->iterator%genomeLen]);
uint currentPart = botPart(bot);
if (currentPart >= checkableLevel) bot->iterator++;
break;
}
case commands::check_my_minerals: {
bot->iterator++;
int checkableMinerals = abs(bot->genome[bot->iterator%genomeLen]);
if (bot->minerals >= checkableMinerals) bot->iterator++;
break;
}
case commands::check_target_minerals: {
QPoint xy = oppositeBot(bot);
ulong target_hash = hashxy(xy);
Bot* target_bot = bots.value(target_hash, nullptr);
if (target_bot != nullptr) {
int target_minerals = target_bot->minerals;
if (target_minerals > bot->minerals) bot->iterator++;
}
break;
}
case commands::mutate: {
mutateBotGenome(bot);
bot->energy += 3;
break;
}
case commands::mutate_attack: {
QPoint xy = oppositeBot(bot);
ulong target_hash = hashxy(xy);
Bot* target_bot = bots.value(target_hash, nullptr);
if (target_bot != nullptr) mutateBotGenome(target_bot);
bot->energy--;
break;
}
case commands::change_dir: {
bot->iterator++;
int direction = abs(bot->genome[bot->iterator%genomeLen])%8;
bot->direction = direction;
bot->energy--;
break;
}
default: { // unconditional transfer
bot->iterator += command;
break;
}
}
if (bot->energy>=maxEnergy)
if (!reproduction(bot)) eatBot(bot);
if (bot->energy <= 0 || bot->old >= maxOld)
eatBot(bot);
bot->iterator++;
bot->iterator %= genomeLen;
}
void GeneticWorld::clearKilled() {
foreach (Bot* bot, killedBots) {
int res = bots.remove(bot->getHash());
assert(res);
delete bot;
}
killedBots.clear();
}
void GeneticWorld::run() {
QElapsedTimer startTime;
runFlag = true;
while (runFlag) {
if (processDelay) {
if (processDelay*1000 > processingTime)
usleep(processDelay*1000 - processingTime);
}
startTime.start();
foreach (Bot *bot, bots) {
switch (bot->type) {
case ALIVE: {
botStep(bot);
break;
}
case ORGANIC: {
organicStep(bot);
break;
}
case DEAD: {
killedBots << bot;
}
}
bot->old++;
}
if (!killedBots.empty()) clearKilled();
if (!organicEnabled) assert((uint)bots.size() == aliveBotsCount);
generation++;
processingTime = startTime.nsecsElapsed()/1000;
}
}
void GeneticWorld::stop() {
runFlag = false;
}