Dimension.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538
  1. #include "Dimension.h"
  2. #include "Constants.h"
  3. #include "Datei.h"
  4. #include "Game.h"
  5. #include "NoBlock.h"
  6. using namespace Framework;
  7. Dimension::Dimension(int id)
  8. : Thread(),
  9. dimensionId(id),
  10. gravity(9.8f),
  11. chunks(new Trie<Chunk>()),
  12. entities(new RCArray<Entity>())
  13. {
  14. start();
  15. }
  16. Dimension::~Dimension()
  17. {
  18. entities->release();
  19. chunks->release();
  20. }
  21. void Dimension::api(Framework::InMemoryBuffer* zRequest, NetworkMessage* zResponse, Entity* zSource)
  22. {
  23. DoLaterHandler laterHandler;
  24. char type;
  25. zRequest->lese(&type, 1);
  26. switch (type)
  27. {
  28. case 0: // chunk message
  29. {
  30. Punkt center;
  31. zRequest->lese((char*)&center.x, 4);
  32. zRequest->lese((char*)&center.y, 4);
  33. cs.lock();
  34. Chunk* cC = zChunk(center);
  35. if (!cC)
  36. {
  37. // TODO: have a max amount of waiting requests per player
  38. waitingRequests.add({ dynamic_cast<InMemoryBuffer*>(zRequest->getThis()), center, zSource->getId() });
  39. Game::INSTANCE->requestArea({ center.x - CHUNK_SIZE / 2, center.y - CHUNK_SIZE / 2, center.x + CHUNK_SIZE / 2 - 1, center.y + CHUNK_SIZE / 2 - 1, dimensionId });
  40. }
  41. else
  42. {
  43. cC->api(zRequest, zSource, laterHandler);
  44. }
  45. cs.unlock();
  46. break;
  47. }
  48. }
  49. }
  50. void Dimension::tickEntities()
  51. {
  52. for (auto entity : *entities)
  53. {
  54. if (!entity->isRemoved() && zChunk(Punkt((int)entity->getPosition().x, (int)entity->getPosition().y)))
  55. entity->prepareTick(this);
  56. }
  57. int index = 0;
  58. for (auto entity : *entities)
  59. {
  60. if (!entity->isRemoved() && zChunk(Punkt((int)entity->getPosition().x, (int)entity->getPosition().y)))
  61. entity->tick(this);
  62. index++;
  63. }
  64. }
  65. void Dimension::thread()
  66. {
  67. // light calculation
  68. int index = 0;
  69. ZeitMesser messer;
  70. messer.messungStart();
  71. double time = 0;
  72. while (true)
  73. {
  74. lightCs.lock();
  75. if (!lightUpdateQueue.getEintragAnzahl())
  76. {
  77. lightCs.unlock();
  78. messer.messungEnde();
  79. time += messer.getSekunden();
  80. Sleep(500);
  81. messer.messungStart();
  82. continue;
  83. }
  84. Vec3<int> position = lightUpdateQueue.get(0);
  85. lightUpdateQueue.remove(0);
  86. lightCs.unlock();
  87. // TODO: do not remove chunks while light calculation
  88. Chunk* chunk = zChunk(Game::INSTANCE->getChunkCenter(position.x, position.y));
  89. if (position.z >= 0 && position.z < WORLD_HEIGHT)
  90. {
  91. if (chunk)
  92. {
  93. int x = position.x % CHUNK_SIZE;
  94. int y = position.y % CHUNK_SIZE;
  95. if (x < 0)
  96. x += CHUNK_SIZE;
  97. if (y < 0)
  98. y += CHUNK_SIZE;
  99. unsigned char* light = chunk->getLightData(Vec3<int>(x, y, position.z));
  100. unsigned char dayLight[6] = { 255, 255, 255, 0, 0, 0 };
  101. unsigned char noLight[6] = { 0, 0, 0, 0, 0, 0 };
  102. unsigned char newLight[6] = { 0, 0, 0, 0, 0, 0 };
  103. // add neighbor light emission
  104. for (int i = 0; i < 6; i++)
  105. {
  106. unsigned char* neighborLeight;
  107. Vec3<int> neighborPos = position + getDirection(getDirectionFromIndex(i));
  108. if (neighborPos.z < 0)
  109. {
  110. neighborLeight = noLight;
  111. }
  112. else if (neighborPos.z >= WORLD_HEIGHT)
  113. {
  114. neighborLeight = dayLight;
  115. }
  116. else
  117. {
  118. Chunk* neighborChunk = zChunk(Game::INSTANCE->getChunkCenter(neighborPos.x, neighborPos.y));
  119. int x = neighborPos.x % CHUNK_SIZE;
  120. int y = neighborPos.y % CHUNK_SIZE;
  121. if (x < 0)
  122. x += CHUNK_SIZE;
  123. if (y < 0)
  124. y += CHUNK_SIZE;
  125. if (neighborChunk)
  126. neighborLeight = neighborChunk->getLightData(Vec3<int>(x, y, neighborPos.z));
  127. else
  128. neighborLeight = noLight;
  129. }
  130. for (int j = 0; j < 3; j++)
  131. newLight[j] = (unsigned char)MAX(newLight[j], i == getDirectionIndex(TOP) ? neighborLeight[j] : (unsigned char)((float)neighborLeight[j] * 0.8f));
  132. for (int j = 3; j < 6; j++)
  133. newLight[j] = (unsigned char)MAX(newLight[j], (unsigned char)((float)neighborLeight[j] * 0.8f));
  134. }
  135. const Block* current = zBlockOrDefault(position);
  136. if (!current)
  137. current = &NoBlock::INSTANCE;
  138. // add own light emission
  139. for (int j = 3; j < 6; j++)
  140. newLight[j] = (unsigned char)MAX(newLight[j], current->getLightEmisionColor()[j - 3]);
  141. current->filterPassingLight(newLight);
  142. current->filterPassingLight(newLight + 3);
  143. for (int i = 0; i < 6; i++)
  144. {
  145. if (newLight[i] != light[i])
  146. {
  147. chunk->setLightData(Vec3<int>(x, y, position.z), newLight);
  148. for (int j = 0; j < 6; j++)
  149. updateLightning(position + getDirection(getDirectionFromIndex(j)));
  150. break;
  151. }
  152. }
  153. }
  154. }
  155. index++;
  156. if (index > 100000)
  157. {
  158. messer.messungEnde();
  159. time += messer.getSekunden();
  160. std::cout << "100000 light updates needed " << time << " seconds\n";
  161. time = 0;
  162. index = 0;
  163. Sleep(250);
  164. messer.messungStart();
  165. }
  166. }
  167. }
  168. void Dimension::getAddrOf(Punkt cPos, char* addr) const
  169. {
  170. *(int*)addr = cPos.x;
  171. *((int*)addr + 1) = cPos.y;
  172. }
  173. void Dimension::getAddrOfWorld(Punkt wPos, char* addr) const
  174. {
  175. if (wPos.x < 0)
  176. wPos.x -= CHUNK_SIZE;
  177. if (wPos.y < 0) // needed because otherwise would (-8, -8) have the same adress as (8, 8)
  178. wPos.y -= CHUNK_SIZE;
  179. wPos /= CHUNK_SIZE;
  180. getAddrOf(wPos, addr);
  181. }
  182. Chunk* Dimension::zChunk(Punkt wPos) const
  183. {
  184. char addr[8];
  185. getAddrOfWorld(wPos, addr);
  186. return chunks->z(addr, 8);
  187. }
  188. Framework::Either<Block*, int> Dimension::zBlock(Vec3<int> location)
  189. {
  190. Chunk* c = zChunk(Game::INSTANCE->getChunkCenter(location.x, location.y));
  191. if (c)
  192. {
  193. int x = location.x % CHUNK_SIZE;
  194. int y = location.y % CHUNK_SIZE;
  195. if (x < 0)
  196. x += CHUNK_SIZE;
  197. if (y < 0)
  198. y += CHUNK_SIZE;
  199. return c->zBlockAt(Vec3<int>(x, y, location.z));
  200. }
  201. return 0;
  202. }
  203. Block* Dimension::zRealBlockInstance(Framework::Vec3<int> location)
  204. {
  205. Chunk* c = zChunk(Game::INSTANCE->getChunkCenter(location.x, location.y));
  206. if (c)
  207. {
  208. int x = location.x % CHUNK_SIZE;
  209. int y = location.y % CHUNK_SIZE;
  210. if (x < 0)
  211. x += CHUNK_SIZE;
  212. if (y < 0)
  213. y += CHUNK_SIZE;
  214. c->instantiateBlock(Vec3<int>(x, y, location.z));
  215. auto result = c->zBlockAt(Vec3<int>(x, y, location.z));
  216. return result.isA() ? result.getA() : 0;
  217. }
  218. return 0;
  219. }
  220. const Block* Dimension::zBlockOrDefault(Framework::Vec3<int> location)
  221. {
  222. Chunk* c = zChunk(Game::INSTANCE->getChunkCenter(location.x, location.y));
  223. if (c)
  224. {
  225. int x = location.x % CHUNK_SIZE;
  226. int y = location.y % CHUNK_SIZE;
  227. if (x < 0)
  228. x += CHUNK_SIZE;
  229. if (y < 0)
  230. y += CHUNK_SIZE;
  231. return c->zBlockConst(Vec3<int>(x, y, location.z));
  232. }
  233. return 0;
  234. }
  235. void Dimension::placeBlock(Framework::Vec3<int> location, Framework::Either<Block*, int> block)
  236. {
  237. Chunk* c = zChunk(Game::getChunkCenter(location.x, location.y));
  238. if (c)
  239. {
  240. int x = location.x % CHUNK_SIZE;
  241. int y = location.y % CHUNK_SIZE;
  242. if (x < 0)
  243. x += CHUNK_SIZE;
  244. if (y < 0)
  245. y += CHUNK_SIZE;
  246. if (block.isA())
  247. c->putBlockAt(Vec3<int>(x, y, location.z), block);
  248. else
  249. {
  250. c->putBlockAt(Vec3<int>(x, y, location.z), 0);
  251. c->putBlockTypeAt(Vec3<int>(x, y, location.z), block);
  252. }
  253. }
  254. else if (block.isA())
  255. block.getA()->release();
  256. }
  257. void Dimension::addEntity(Entity* entity)
  258. {
  259. entities->add(entity);
  260. }
  261. void Dimension::setChunk(Chunk* chunk, Punkt center)
  262. {
  263. chunkCs.lock();
  264. char addr[8];
  265. getAddrOfWorld(center, addr);
  266. Chunk* old = chunks->z(addr, 8);
  267. if (old)
  268. {
  269. for (int i = 0; i < chunkList.getEintragAnzahl(); i++)
  270. {
  271. if (chunkList.get(i) == old)
  272. {
  273. chunkList.remove(i);
  274. break;
  275. }
  276. }
  277. }
  278. chunks->set(addr, 8, chunk);
  279. if (chunk)
  280. {
  281. chunkList.add(chunk);
  282. chunk->setAdded();
  283. }
  284. getAddrOfWorld(center + Punkt(CHUNK_SIZE, 0), addr);
  285. Chunk* zChunk = chunks->z(addr, 8);
  286. if (zChunk)
  287. {
  288. zChunk->setNeighbor(WEST, chunk);
  289. if (chunk)
  290. {
  291. chunk->setNeighbor(EAST, zChunk);
  292. }
  293. }
  294. getAddrOfWorld(center + Punkt(-CHUNK_SIZE, 0), addr);
  295. zChunk = chunks->z(addr, 8);
  296. if (zChunk)
  297. {
  298. zChunk->setNeighbor(EAST, chunk);
  299. if (chunk)
  300. chunk->setNeighbor(WEST, zChunk);
  301. }
  302. getAddrOfWorld(center + Punkt(0, CHUNK_SIZE), addr);
  303. zChunk = chunks->z(addr, 8);
  304. if (zChunk)
  305. {
  306. zChunk->setNeighbor(NORTH, chunk);
  307. if (chunk)
  308. chunk->setNeighbor(SOUTH, zChunk);
  309. }
  310. getAddrOfWorld(center + Punkt(0, -CHUNK_SIZE), addr);
  311. zChunk = chunks->z(addr, 8);
  312. if (zChunk)
  313. {
  314. zChunk->setNeighbor(SOUTH, chunk);
  315. if (chunk)
  316. chunk->setNeighbor(NORTH, zChunk);
  317. }
  318. DoLaterHandler laterHandler;
  319. if (chunk)
  320. {
  321. cs.lock();
  322. int index = 0;
  323. for (Iterator<RequestQueue> iterator = waitingRequests.begin(); iterator; )
  324. {
  325. Entity* zE = Game::INSTANCE->zEntity(iterator.val().sourceId);
  326. if (zE)
  327. {
  328. if (iterator.val().chunkCenter == chunk->getCenter())
  329. {
  330. chunk->api(iterator.val().request, zE, laterHandler);
  331. iterator.val().request->release();
  332. iterator.remove();
  333. continue;
  334. }
  335. }
  336. else
  337. {
  338. iterator.val().request->release();
  339. iterator.remove();
  340. continue;
  341. }
  342. iterator++;
  343. index++;
  344. }
  345. cs.unlock();
  346. }
  347. chunkCs.unlock();
  348. updateLightAtChunkBorders(center);
  349. }
  350. void Dimension::save(Text worldDir) const
  351. {
  352. for (auto chunk = chunks->getIterator(); chunk; chunk++)
  353. {
  354. if (!chunk._)
  355. continue;
  356. Datei* file = new Datei();
  357. Text filePath = worldDir + "/dim/" + dimensionId + "/";
  358. filePath.appendHex(chunk->getCenter().x);
  359. filePath += "_";
  360. filePath.appendHex(chunk->getCenter().y);
  361. filePath += ".chunk";
  362. file->setDatei(filePath);
  363. if (file->open(Datei::Style::schreiben))
  364. chunk->save(file);
  365. file->close();
  366. file->release();
  367. }
  368. Text filePath = worldDir + "/dim/" + dimensionId + "/entities";
  369. Datei* file = new Datei();
  370. file->setDatei(filePath);
  371. if (file->open(Datei::Style::schreiben))
  372. {
  373. for (Entity* entity : *entities)
  374. {
  375. if (entity->zType()->getId() != PlayerEntityType::ID)
  376. {
  377. if (!entity->isRemoved())
  378. {
  379. int type = entity->zType()->getId();
  380. file->schreibe((char*)&type, 4);
  381. StaticRegistry<EntityType>::INSTANCE.zElement(type)->saveEntity(entity, file);
  382. }
  383. }
  384. else
  385. {
  386. Datei pFile;
  387. pFile.setDatei(worldDir + "/player/" + ((Player*)entity)->getName());
  388. if (pFile.open(Datei::Style::schreiben))
  389. PlayerEntityType::INSTANCE->saveEntity(entity, &pFile);
  390. }
  391. }
  392. file->close();
  393. }
  394. }
  395. int Dimension::getDimensionId() const
  396. {
  397. return dimensionId;
  398. }
  399. bool Dimension::hasChunck(int x, int y) const
  400. {
  401. return zChunk(Punkt(x, y));
  402. }
  403. float Dimension::getGravity() const
  404. {
  405. return gravity;
  406. }
  407. void Dimension::removeOldChunks()
  408. {
  409. chunkCs.lock();
  410. Array<int> removed;
  411. int index = 0;
  412. for (Chunk* chunk : chunkList)
  413. {
  414. if (!chunk->hasObservers())
  415. removed.add(index, 0);
  416. index++;
  417. }
  418. for (int i : removed)
  419. {
  420. Chunk* chunk = chunkList.get(i);
  421. // TODO: save chunk in a seperate thread?
  422. Text filePath = Game::INSTANCE->getWorldDirectory() + "/dim/" + getDimensionId() + "/";
  423. filePath.appendHex(chunk->getCenter().x);
  424. filePath += "_";
  425. filePath.appendHex(chunk->getCenter().y);
  426. filePath += ".chunk";
  427. Datei d;
  428. d.setDatei(filePath);
  429. d.erstellen();
  430. d.open(Datei::Style::schreiben);
  431. chunk->save(&d);
  432. d.close();
  433. chunk->prepareRemove();
  434. setChunk(0, chunk->getCenter());
  435. }
  436. chunkCs.unlock();
  437. }
  438. Entity* Dimension::zEntity(int id)
  439. {
  440. for (auto entity : *entities)
  441. {
  442. if (!entity->isRemoved() && entity->getId() == id)
  443. return entity;
  444. }
  445. return 0;
  446. }
  447. Entity* Dimension::zNearestEntity(Framework::Vec3<float> pos, std::function<bool(Entity*)> filter)
  448. {
  449. Entity* result = 0;
  450. float sqDist = 0;
  451. for (auto entity : *entities)
  452. {
  453. if (!entity->isRemoved() && filter(entity))
  454. {
  455. float d = pos.abstandSq(entity->getPosition());
  456. if (!result || d < sqDist)
  457. {
  458. result = entity;
  459. sqDist = d;
  460. }
  461. }
  462. }
  463. return result;
  464. }
  465. void Dimension::removeEntity(int id)
  466. {
  467. int index = 0;
  468. for (auto entity : *entities)
  469. {
  470. if (entity->getId() == id)
  471. {
  472. entities->remove(index);
  473. return;
  474. }
  475. index++;
  476. }
  477. }
  478. void Dimension::removeSubscriptions(Entity* zEntity)
  479. {
  480. for (Chunk* chunk : chunkList)
  481. chunk->removeObserver(zEntity);
  482. }
  483. void Dimension::updateLightning(Vec3<int> location)
  484. {
  485. lightCs.lock();
  486. lightUpdateQueue.add(location, 0);
  487. lightCs.unlock();
  488. }
  489. void Dimension::updateLightAtChunkBorders(Punkt chunkCenter)
  490. {
  491. lightCs.lock();
  492. if (lightUpdateQueue.getEintragAnzahl() > 300000)
  493. {
  494. std::cout << "warning: light calculation queue is over 300000 blocks long";
  495. }
  496. for (int i = WORLD_HEIGHT - 1; i >= 0; i--)
  497. {
  498. for (int j = 0; j < CHUNK_SIZE; j++)
  499. {
  500. updateLightning(Vec3<int>(chunkCenter.x - CHUNK_SIZE / 8 - 1, chunkCenter.y - CHUNK_SIZE / 8 + j, i));
  501. updateLightning(Vec3<int>(chunkCenter.x - CHUNK_SIZE / 8, chunkCenter.y - CHUNK_SIZE / 8 + j, i));
  502. updateLightning(Vec3<int>(chunkCenter.x + CHUNK_SIZE / 8 - 1, chunkCenter.y - CHUNK_SIZE / 8 + j, i));
  503. updateLightning(Vec3<int>(chunkCenter.x + CHUNK_SIZE / 8, chunkCenter.y - CHUNK_SIZE / 8 + j, i));
  504. updateLightning(Vec3<int>(chunkCenter.x - CHUNK_SIZE / 8 + j, chunkCenter.y - CHUNK_SIZE / 8 - 1, i));
  505. updateLightning(Vec3<int>(chunkCenter.x - CHUNK_SIZE / 8 + j, chunkCenter.y - CHUNK_SIZE / 8, i));
  506. updateLightning(Vec3<int>(chunkCenter.x - CHUNK_SIZE / 8 + j, chunkCenter.y + CHUNK_SIZE / 8 - 1, i));
  507. updateLightning(Vec3<int>(chunkCenter.x - CHUNK_SIZE / 8 + j, chunkCenter.y + CHUNK_SIZE / 8, i));
  508. }
  509. }
  510. lightCs.unlock();
  511. }