CGameState.cpp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  1. #include "CGameState.h"
  2. #include "CGameInterface.h"
  3. #include "CPlayerInterface.h"
  4. #include <algorithm>
  5. #include "SDL_Thread.h"
  6. #include "SDL_Extensions.h"
  7. #include <queue>
  8. class CMP_stack
  9. {
  10. public:
  11. bool operator ()(const CStack* a, const CStack* b)
  12. {
  13. return (a->creature->speed)>(b->creature->speed);
  14. }
  15. } cmpst ;
  16. void CGameState::battle(CCreatureSet * army1, CCreatureSet * army2, int3 tile, CArmedInstance *hero1, CArmedInstance *hero2)
  17. {
  18. curB = new BattleInfo();
  19. std::vector<CStack*> & stacks = (curB->stacks);
  20. curB->army1=army1;
  21. curB->army2=army2;
  22. curB->hero1=dynamic_cast<CGHeroInstance*>(hero1);
  23. curB->hero2=dynamic_cast<CGHeroInstance*>(hero2);
  24. curB->side1=(hero1)?(hero1->tempOwner):(-1);
  25. curB->side2=(hero2)?(hero2->tempOwner):(-1);
  26. curB->round = -2;
  27. curB->stackActionPerformed = false;
  28. for(std::map<int,std::pair<CCreature*,int> >::iterator i = army1->slots.begin(); i!=army1->slots.end(); i++)
  29. {
  30. stacks.push_back(new CStack(i->second.first,i->second.second,0, stacks.size(), true));
  31. stacks[stacks.size()-1]->ID = stacks.size()-1;
  32. }
  33. //initialization of positions
  34. switch(army1->slots.size()) //for attacker
  35. {
  36. case 0:
  37. break;
  38. case 1:
  39. stacks[0]->position = 86; //6
  40. break;
  41. case 2:
  42. stacks[0]->position = 35; //3
  43. stacks[1]->position = 137; //9
  44. break;
  45. case 3:
  46. stacks[0]->position = 35; //3
  47. stacks[1]->position = 86; //6
  48. stacks[2]->position = 137; //9
  49. break;
  50. case 4:
  51. stacks[0]->position = 1; //1
  52. stacks[1]->position = 69; //5
  53. stacks[2]->position = 103; //7
  54. stacks[3]->position = 171; //11
  55. break;
  56. case 5:
  57. stacks[0]->position = 1; //1
  58. stacks[1]->position = 35; //3
  59. stacks[2]->position = 86; //6
  60. stacks[3]->position = 137; //9
  61. stacks[4]->position = 171; //11
  62. break;
  63. case 6:
  64. stacks[0]->position = 1; //1
  65. stacks[1]->position = 35; //3
  66. stacks[2]->position = 69; //5
  67. stacks[3]->position = 103; //7
  68. stacks[4]->position = 137; //9
  69. stacks[5]->position = 171; //11
  70. break;
  71. case 7:
  72. stacks[0]->position = 1; //1
  73. stacks[1]->position = 35; //3
  74. stacks[2]->position = 69; //5
  75. stacks[3]->position = 86; //6
  76. stacks[4]->position = 103; //7
  77. stacks[5]->position = 137; //9
  78. stacks[6]->position = 171; //11
  79. break;
  80. default: //fault
  81. break;
  82. }
  83. for(std::map<int,std::pair<CCreature*,int> >::iterator i = army2->slots.begin(); i!=army2->slots.end(); i++)
  84. stacks.push_back(new CStack(i->second.first,i->second.second,1, stacks.size(), false));
  85. switch(army2->slots.size()) //for defender
  86. {
  87. case 0:
  88. break;
  89. case 1:
  90. stacks[0+army1->slots.size()]->position = 100; //6
  91. break;
  92. case 2:
  93. stacks[0+army1->slots.size()]->position = 49; //3
  94. stacks[1+army1->slots.size()]->position = 151; //9
  95. break;
  96. case 3:
  97. stacks[0+army1->slots.size()]->position = 49; //3
  98. stacks[1+army1->slots.size()]->position = 100; //6
  99. stacks[2+army1->slots.size()]->position = 151; //9
  100. break;
  101. case 4:
  102. stacks[0+army1->slots.size()]->position = 15; //1
  103. stacks[1+army1->slots.size()]->position = 83; //5
  104. stacks[2+army1->slots.size()]->position = 117; //7
  105. stacks[3+army1->slots.size()]->position = 185; //11
  106. break;
  107. case 5:
  108. stacks[0+army1->slots.size()]->position = 15; //1
  109. stacks[1+army1->slots.size()]->position = 49; //3
  110. stacks[2+army1->slots.size()]->position = 100; //6
  111. stacks[3+army1->slots.size()]->position = 151; //9
  112. stacks[4+army1->slots.size()]->position = 185; //11
  113. break;
  114. case 6:
  115. stacks[0+army1->slots.size()]->position = 15; //1
  116. stacks[1+army1->slots.size()]->position = 49; //3
  117. stacks[2+army1->slots.size()]->position = 83; //5
  118. stacks[3+army1->slots.size()]->position = 117; //7
  119. stacks[4+army1->slots.size()]->position = 151; //9
  120. stacks[5+army1->slots.size()]->position = 185; //11
  121. break;
  122. case 7:
  123. stacks[0+army1->slots.size()]->position = 15; //1
  124. stacks[1+army1->slots.size()]->position = 49; //3
  125. stacks[2+army1->slots.size()]->position = 83; //5
  126. stacks[3+army1->slots.size()]->position = 100; //6
  127. stacks[4+army1->slots.size()]->position = 117; //7
  128. stacks[5+army1->slots.size()]->position = 151; //9
  129. stacks[6+army1->slots.size()]->position = 185; //11
  130. break;
  131. default: //fault
  132. break;
  133. }
  134. for(int g=0; g<stacks.size(); ++g) //shifting positions of two-hex creatures
  135. {
  136. if((stacks[g]->position%17)==1 && stacks[g]->creature->isDoubleWide())
  137. {
  138. stacks[g]->position += 1;
  139. }
  140. else if((stacks[g]->position%17)==15 && stacks[g]->creature->isDoubleWide())
  141. {
  142. stacks[g]->position -= 1;
  143. }
  144. }
  145. std::stable_sort(stacks.begin(),stacks.end(),cmpst);
  146. //for start inform players about battle
  147. for(std::map<int, PlayerState>::iterator j=CGI->state->players.begin(); j!=CGI->state->players.end(); ++j)//CGI->state->players.size(); ++j) //for testing
  148. {
  149. if (j->first > PLAYER_LIMIT)
  150. break;
  151. if(j->second.fogOfWarMap[tile.x][tile.y][tile.z])
  152. { //player should be notified
  153. tribool side = tribool::indeterminate_value;
  154. if(j->first == curB->side1) //player is attacker
  155. side = false;
  156. else if(j->first == curB->side2) //player is defender
  157. side = true;
  158. else
  159. return; //no witnesses
  160. if(CGI->playerint[j->second.serial]->human)
  161. {
  162. ((CPlayerInterface*)( CGI->playerint[j->second.serial] ))->battleStart(army1, army2, tile, curB->hero1, curB->hero2, side);
  163. }
  164. else
  165. {
  166. //CGI->playerint[j->second.serial]->battleStart(army1, army2, tile, curB->hero1, curB->hero2, side);
  167. }
  168. }
  169. }
  170. curB->round++;
  171. if( (curB->hero1 && curB->hero1->getSecSkillLevel(19)>=0) || ( curB->hero2 && curB->hero2->getSecSkillLevel(19)>=0) )//someone has tactics
  172. {
  173. //TODO: wywolania dla rundy -1, ograniczenie pola ruchu, etc
  174. }
  175. curB->round++;
  176. //SDL_Thread * eventh = SDL_CreateThread(battleEventThread, NULL);
  177. while(true) //till the end of the battle ;]
  178. {
  179. bool battleEnd = false;
  180. //tell players about next round
  181. for(int v=0; v<CGI->playerint.size(); ++v)
  182. CGI->playerint[v]->battleNewRound(curB->round);
  183. //stack loop
  184. for(int i=0;i<stacks.size();i++)
  185. {
  186. curB->activeStack = i;
  187. curB->stackActionPerformed = false;
  188. if(stacks[i]->alive) //indicate posiibility of making action for this unit
  189. {
  190. unsigned char owner = (stacks[i]->owner)?(hero2 ? hero2->tempOwner : 255):(hero1->tempOwner);
  191. unsigned char serialOwner = -1;
  192. for(int g=0; g<CGI->playerint.size(); ++g)
  193. {
  194. if(CGI->playerint[g]->playerID == owner)
  195. {
  196. serialOwner = g;
  197. break;
  198. }
  199. }
  200. if(serialOwner==255) //neutral unit
  201. {
  202. }
  203. else if(CGI->playerint[serialOwner]->human)
  204. {
  205. BattleAction ba = ((CPlayerInterface*)CGI->playerint[serialOwner])->activeStack(stacks[i]->ID);
  206. switch(ba.actionType)
  207. {
  208. case 3: //defend
  209. {
  210. break;
  211. }
  212. case 4: //retreat/flee
  213. {
  214. for(int v=0; v<CGI->playerint.size(); ++v) //tell about the end of this battle to interfaces
  215. CGI->playerint[v]->battleEnd(army1, army2, hero1, hero2, std::vector<int>(), 0, false);
  216. battleEnd = true;
  217. break;
  218. }
  219. case 6: //walk or attack
  220. {
  221. battleMoveCreatureStack(ba.stackNumber, ba.destinationTile);
  222. break;
  223. }
  224. }
  225. }
  226. else
  227. {
  228. //CGI->playerint[serialOwner]->activeStack(stacks[i]->ID);
  229. }
  230. }
  231. if(battleEnd)
  232. break;
  233. //sprawdzic czy po tej akcji ktoras strona nie wygrala bitwy
  234. }
  235. if(battleEnd)
  236. break;
  237. curB->round++;
  238. SDL_Delay(50);
  239. }
  240. for(int i=0;i<stacks.size();i++)
  241. delete stacks[i];
  242. delete curB;
  243. curB = NULL;
  244. }
  245. bool CGameState::battleMoveCreatureStack(int ID, int dest)
  246. {
  247. //first checks
  248. if(curB->stackActionPerformed) //because unit cannot be moved more than once
  249. return false;
  250. bool stackAtEnd = false; //true if there is a stack at the end of the path (we should attack it)
  251. unsigned char owner = -1; //owner moved of unit
  252. for(int g=0; g<curB->stacks.size(); ++g)
  253. {
  254. if(curB->stacks[g]->position == dest)
  255. {
  256. stackAtEnd = true;
  257. break;
  258. }
  259. }
  260. for(int g=0; g<curB->stacks.size(); ++g)
  261. {
  262. if(curB->stacks[g]->ID == ID)
  263. {
  264. owner = curB->stacks[g]->owner;
  265. break;
  266. }
  267. }
  268. //selecting moved stack
  269. CStack * curStack = NULL;
  270. for(int y=0; y<curB->stacks.size(); ++y)
  271. {
  272. if(curB->stacks[y]->ID == ID)
  273. {
  274. curStack = curB->stacks[y];
  275. break;
  276. }
  277. }
  278. if(!curStack)
  279. return false;
  280. //initing necessary tables
  281. bool accessibility[187]; //accesibility of hexes
  282. for(int k=0; k<187; k++)
  283. accessibility[k] = true;
  284. for(int g=0; g<curB->stacks.size(); ++g)
  285. {
  286. //if(curB->stacks[g]->owner == owner) //we don't want to lock enemy's positions
  287. {
  288. accessibility[curB->stacks[g]->position] = false;
  289. if(curB->stacks[g]->creature->isDoubleWide()) //if it's a double hex creature
  290. {
  291. if(curB->stacks[g]->attackerOwned)
  292. accessibility[curB->stacks[g]->position-1] = false;
  293. else
  294. accessibility[curB->stacks[g]->position+1] = false;
  295. }
  296. }
  297. }
  298. if(curStack->creature->isDoubleWide()) //locking positions unreachable by two-hex creatures
  299. {
  300. bool mac[187];
  301. for(int b=0; b<187; ++b)
  302. {
  303. //
  304. // && ( ? (curStack->attackerOwned ? accessibility[curNext-1] : accessibility[curNext+1]) : true )
  305. mac[b] = accessibility[b];
  306. if( accessibility[b] && !(curStack->attackerOwned ? accessibility[b-1] : accessibility[b+1]))
  307. {
  308. mac[b] = false;
  309. }
  310. }
  311. mac[curStack->attackerOwned ? curStack->position+1 : curStack->position-1]=true;
  312. for(int v=0; v<187; ++v)
  313. accessibility[v] = mac[v];
  314. //removing accessibility for side hexes
  315. for(int v=0; v<187; ++v)
  316. if(curStack->attackerOwned ? (v%17)==1 : (v%17)==15)
  317. accessibility[v] = false;
  318. }
  319. if(!accessibility[dest])
  320. return false;
  321. int predecessor[187]; //for getting the Path
  322. for(int b=0; b<187; ++b)
  323. predecessor[b] = -1;
  324. //bfsing
  325. int dists[187]; //calculated distances
  326. std::queue<int> hexq; //bfs queue
  327. hexq.push(curStack->position);
  328. for(int g=0; g<187; ++g)
  329. dists[g] = 100000000;
  330. dists[hexq.front()] = 0;
  331. int curNext = -1; //for bfs loop only (helper var)
  332. while(!hexq.empty()) //bfs loop
  333. {
  334. int curHex = hexq.front();
  335. hexq.pop();
  336. curNext = curHex - ( (curHex/17)%2 ? 18 : 17 );
  337. if((curNext > 0) && (accessibility[curNext] || curNext==dest) && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //top left
  338. {
  339. hexq.push(curNext);
  340. dists[curNext] = dists[curHex] + 1;
  341. predecessor[curNext] = curHex;
  342. }
  343. curNext = curHex - ( (curHex/17)%2 ? 17 : 16 );
  344. if((curNext > 0) && (accessibility[curNext] || curNext==dest) && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //top right
  345. {
  346. hexq.push(curNext);
  347. dists[curNext] = dists[curHex] + 1;
  348. predecessor[curNext] = curHex;
  349. }
  350. curNext = curHex - 1;
  351. if((curNext > 0) && (accessibility[curNext] || curNext==dest) && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //left
  352. {
  353. hexq.push(curNext);
  354. dists[curNext] = dists[curHex] + 1;
  355. predecessor[curNext] = curHex;
  356. }
  357. curNext = curHex + 1;
  358. if((curNext < 187) && (accessibility[curNext] || curNext==dest) && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //right
  359. {
  360. hexq.push(curNext);
  361. dists[curNext] = dists[curHex] + 1;
  362. predecessor[curNext] = curHex;
  363. }
  364. curNext = curHex + ( (curHex/17)%2 ? 16 : 17 );
  365. if((curNext < 187) && (accessibility[curNext] || curNext==dest) && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //bottom left
  366. {
  367. hexq.push(curNext);
  368. dists[curNext] = dists[curHex] + 1;
  369. predecessor[curNext] = curHex;
  370. }
  371. curNext = curHex + ( (curHex/17)%2 ? 17 : 18 );
  372. if((curNext < 187) && (accessibility[curNext] || curNext==dest) && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //bottom right
  373. {
  374. hexq.push(curNext);
  375. dists[curNext] = dists[curHex] + 1;
  376. predecessor[curNext] = curHex;
  377. }
  378. }
  379. //following the Path
  380. if(dists[dest] > curStack->creature->speed)
  381. return false;
  382. std::vector<int> path;
  383. int curElem = dest;
  384. while(curElem!=curStack->position)
  385. {
  386. path.push_back(curElem);
  387. curElem = predecessor[curElem];
  388. }
  389. for(int v=path.size()-1; v>=0; --v)
  390. {
  391. if(v!=0 || !stackAtEnd) //it's not the last step
  392. {
  393. LOCPLINT->battleStackMoved(ID, path[v], v==path.size()-1, v==0);
  394. curStack->position = path[v];
  395. }
  396. else //if it's last step and we should attack unit at the end
  397. {
  398. LOCPLINT->battleStackAttacking(ID, path[v]);
  399. }
  400. }
  401. curB->stackActionPerformed = true;
  402. LOCPLINT->actionFinished(BattleAction());
  403. return true;
  404. }
  405. std::vector<int> CGameState::battleGetRange(int ID)
  406. {
  407. int initialPlace=-1; //position of unit
  408. int radius=-1; //range of unit
  409. unsigned char owner = -1; //owner of unit
  410. //selecting stack
  411. CStack * curStack = NULL;
  412. for(int y=0; y<curB->stacks.size(); ++y)
  413. {
  414. if(curB->stacks[y]->ID == ID)
  415. {
  416. curStack = curB->stacks[y];
  417. break;
  418. }
  419. }
  420. for(int g=0; g<curB->stacks.size(); ++g)
  421. {
  422. if(curB->stacks[g]->ID == ID)
  423. {
  424. initialPlace = curB->stacks[g]->position;
  425. radius = curB->stacks[g]->creature->speed;
  426. owner = curB->stacks[g]->owner;
  427. break;
  428. }
  429. }
  430. bool accessibility[187]; //accesibility of hexes
  431. for(int k=0; k<187; k++)
  432. accessibility[k] = true;
  433. for(int g=0; g<curB->stacks.size(); ++g)
  434. {
  435. if(curB->stacks[g]->owner == owner) //we don't want to lock enemy's positions
  436. {
  437. accessibility[curB->stacks[g]->position] = false;
  438. if(curB->stacks[g]->creature->isDoubleWide()) //if it's a double hex creature
  439. {
  440. if(curB->stacks[g]->attackerOwned)
  441. accessibility[curB->stacks[g]->position-1] = false;
  442. else
  443. accessibility[curB->stacks[g]->position+1] = false;
  444. }
  445. }
  446. }
  447. if(curStack->creature->isDoubleWide()) //locking positions unreachable by two-hex creatures
  448. {
  449. bool mac[187];
  450. for(int b=0; b<187; ++b)
  451. {
  452. //
  453. // && ( ? (curStack->attackerOwned ? accessibility[curNext-1] : accessibility[curNext+1]) : true )
  454. mac[b] = accessibility[b];
  455. if( accessibility[b] && !(curStack->attackerOwned ? accessibility[b-1] : accessibility[b+1]))
  456. {
  457. mac[b] = false;
  458. }
  459. }
  460. mac[curStack->attackerOwned ? curStack->position+1 : curStack->position-1]=true;
  461. for(int v=0; v<187; ++v)
  462. accessibility[v] = mac[v];
  463. //removing accessibility for side hexes
  464. for(int v=0; v<187; ++v)
  465. if(curStack->attackerOwned ? (v%17)==1 : (v%17)==15)
  466. accessibility[v] = false;
  467. }
  468. int dists[187]; //calculated distances
  469. std::queue<int> hexq; //bfs queue
  470. hexq.push(initialPlace);
  471. for(int g=0; g<187; ++g)
  472. dists[g] = 100000000;
  473. dists[initialPlace] = 0;
  474. int curNext = -1; //for bfs loop only (helper var)
  475. while(!hexq.empty()) //bfs loop
  476. {
  477. int curHex = hexq.front();
  478. hexq.pop();
  479. curNext = curHex - ( (curHex/17)%2 ? 18 : 17 );
  480. if((curNext > 0) && accessibility[curNext] && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //top left
  481. {
  482. hexq.push(curNext);
  483. dists[curNext] = dists[curHex] + 1;
  484. }
  485. curNext = curHex - ( (curHex/17)%2 ? 17 : 16 );
  486. if((curNext > 0) && accessibility[curNext] && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //top right
  487. {
  488. hexq.push(curNext);
  489. dists[curNext] = dists[curHex] + 1;
  490. }
  491. curNext = curHex - 1;
  492. if((curNext > 0) && accessibility[curNext] && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //left
  493. {
  494. hexq.push(curNext);
  495. dists[curNext] = dists[curHex] + 1;
  496. }
  497. curNext = curHex + 1;
  498. if((curNext < 187) && accessibility[curNext] && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //right
  499. {
  500. hexq.push(curNext);
  501. dists[curNext] = dists[curHex] + 1;
  502. }
  503. curNext = curHex + ( (curHex/17)%2 ? 16 : 17 );
  504. if((curNext < 187) && accessibility[curNext] && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //bottom left
  505. {
  506. hexq.push(curNext);
  507. dists[curNext] = dists[curHex] + 1;
  508. }
  509. curNext = curHex + ( (curHex/17)%2 ? 17 : 18 );
  510. if((curNext < 187) && accessibility[curNext] && (dists[curHex] + 1 < dists[curNext]) && (curNext)%17!=0 && (curNext)%17!=16) //bottom right
  511. {
  512. hexq.push(curNext);
  513. dists[curNext] = dists[curHex] + 1;
  514. }
  515. }
  516. std::vector<int> ret;
  517. for(int i=0; i<187; ++i)
  518. {
  519. if(dists[i]<=radius)
  520. {
  521. ret.push_back(i);
  522. }
  523. }
  524. return ret;
  525. }