123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- #include "Game.h"
- #include <AsynchronCall.h>
- #include <Bildschirm.h>
- #include <DateiSystem.h>
- #include "Globals.h"
- #include "Initialisierung.h"
- #include "ItemBar.h"
- #include "StatusBars.h"
- Game::Game(Bildschirm* zScreen)
- : Menu(zScreen),
- recipieVisible(0),
- itemListContainer(0)
- {
- LTDBDatei dat;
- dat.setDatei(new Text("data/images/gui_icons.ltdb"));
- dat.leseDaten(0);
- Bild* search = dat.laden(0, new Text("search.png"));
- searchIcon = new BildZ();
- searchIcon->setBildZ(search);
- searchIcon->setStyle(
- BildZ::Style::Sichtbar | BildZ::Style::Alpha | BildZ::Style::Rahmen);
- searchIcon->setSize(20, 20);
- searchIcon->setRahmenFarbe(0xFF6d6d6d);
- elements.add(new ScreenCenter());
- inventoryDragController = new DragController<InventoryDragSource, int>();
- logout = initKnopf(10, 10, 200, 20, Knopf::Style::Normal, "Verlassen");
- logout->setMausEreignis([this, zScreen](void* p, void* o, MausEreignis me) {
- if (me.id == ME_RLinks)
- {
- logout->removeStyle(Knopf::Style::Erlaubt);
- zScreen->postAction([this, zScreen]() {
- World::INSTANCE->zClient()->leaveGame();
- logout->addStyle(Knopf::Style::Erlaubt);
- });
- }
- return 1;
- });
- elements.add(logout);
- debug = initTextFeld(10,
- 40,
- 500,
- 250,
- TextFeld::Style::Text | TextFeld::Style::Mehrzeilig,
- "");
- elements.add(debug);
- guiView = new UIMLView("<v/>", uiFactory);
- guiView->addKnownElement(new ItemBarElement());
- guiView->addKnownElement(new StatusBarsElement());
- guiView->setStyle(UIMLView::Style::Sichtbar);
- guiView->setSize(window->zBildschirm()->getBackBufferSize());
- elements.add(guiView);
- targetUIMLView = new UIMLView("<v/>", uiFactory);
- targetUIMLView->setStyle(
- UIMLView::Style::Hintergrund | UIMLView::Style::HAlpha);
- targetUIMLView->setHintergrundFarbe(0xA0000000);
- elements.add(targetUIMLView);
- filter = initTextFeld(zScreen->getBackBufferSize().x / 2 - 200,
- zScreen->getBackBufferSize().y - 200,
- 400,
- 20,
- Framework::TextFeld::Style::TextFeld,
- "");
- searchIcon->setPosition(
- filter->getX() + filter->getBreite() - 20, filter->getY());
- chat = new Chat();
- elements.add(chat);
- LTDBDatei iconsDat;
- iconsDat.setDatei(new Text("data/images/gui_icons.ltdb"));
- iconsDat.leseDaten(0);
- chatButton = uiFactory.createKnopf(uiFactory.initParam);
- chatButton->setToolTipText("Chat", zScreen, uiFactory.initParam.schrift);
- chatButton->setAlphaFeldFarbe(0x5F337AB7);
- chatButton->setSize(40, 40);
- chatButton->setPosition(5, zScreen->getBackBufferSize().y - 45);
- chatButton->addStyle(Framework::Knopf::Style::HBild
- | Framework::Knopf::Style::HAlpha
- | Framework::Knopf::Style::Hintergrund);
- chatButton->setHintergrundBildZ(iconsDat.laden(0, new Text("chat.png")));
- chatButton->setMausEreignis(
- [this](void* p, void* o, Framework::MausEreignis me) {
- if (me.id == ME_RLinks)
- {
- chat->addStyle(Fenster::Style::Sichtbar);
- chatButton->removeStyle(Knopf::Style::Sichtbar);
- }
- return 1;
- });
- elements.add(chatButton);
- mapWindow = new MapWindow();
- elements.add(mapWindow);
- }
- Game::~Game()
- {
- inventoryDragController->release();
- filter->release();
- searchIcon->release();
- if (itemListContainer) itemListContainer->release();
- }
- void Game::updatePosition(
- Vec3<float> position, bool target, Vec3<int> targetPos)
- {
- Text txt = "Position: (";
- txt.setPrecision(2);
- txt += position.x;
- txt += ", ";
- txt += position.y;
- txt += ", ";
- txt += position.z;
- txt += ")";
- if (target)
- {
- txt += "\nTarget: (";
- txt += targetPos.x;
- txt += ", ";
- txt += targetPos.y;
- txt += ", ";
- txt += targetPos.z;
- txt += ")\n";
- Block* b = World::INSTANCE->zBlockAt(targetPos);
- if (b)
- {
- txt += "TargetLight: \n";
- txt += b->printLightInfo();
- }
- txt += "Target Chunk: ";
- txt += World::INSTANCE->getChunkCenter(targetPos.x, targetPos.y).x;
- txt += ", ";
- txt += World::INSTANCE->getChunkCenter(targetPos.x, targetPos.y).y;
- }
- debug->setText(txt);
- }
- void Game::api(char* data)
- {
- switch (data[0])
- {
- case 0: // open dialog
- {
- bool exists = 0;
- short len = *(short*)(data + 1);
- char* dialogName = new char[len + 1];
- memcpy(dialogName, data + 3, len);
- dialogName[len] = 0;
- for (UIMLDialog* dialog : dialogs)
- {
- if (dialog->getName().istGleich(dialogName))
- {
- exists = 1;
- break;
- }
- }
- delete[] dialogName;
- if (!exists)
- {
- int uimlLen = *(int*)(data + 3 + len);
- char* uiml = new char[uimlLen + 1];
- memcpy(uiml, data + 7 + len, uimlLen);
- uiml[uimlLen] = 0;
- UIMLDialog* dialog
- = new UIMLDialog(uiml, [this](UIMLDialog* dialog) {
- window->zBildschirm()->postAction([this, dialog]() {
- int index = 0;
- for (UIMLDialog* d : dialogs)
- {
- if (d == dialog)
- {
- window->zBildschirm()->removeMember(d);
- dialogs.remove(index);
- World::INSTANCE->zKamera()
- ->setControlEnabled(
- dialogs.getEintragAnzahl() == 0);
- updateRecipieVisibility();
- break;
- }
- index++;
- }
- });
- });
- dialogs.add(dialog);
- updateRecipieVisibility();
- World::INSTANCE->zKamera()->setControlEnabled(0);
- window->zBildschirm()->addMember(dialog);
- delete[] uiml;
- }
- break;
- }
- case 1:
- { // element message
- for (UIMLDialog* dialog : dialogs)
- {
- dialog->api(data + 1);
- }
- short idLen = *(short*)(data + 1);
- char* id = new char[idLen + 1];
- memcpy(id, data + 3, idLen);
- id[idLen] = 0;
- NetworkAPIProcessor* processor = dynamic_cast<NetworkAPIProcessor*>(
- guiView->zZeichnungById(id));
- if (processor) processor->api(data + 3 + idLen);
- delete[] id;
- break;
- }
- case 2:
- { // set gui
- int uimlLen = *(int*)(data + 1);
- char* uiml = new char[uimlLen + 1];
- memcpy(uiml, data + 5, uimlLen);
- uiml[uimlLen] = 0;
- guiView->setUIML(uiml);
- guiView->layout();
- delete[] uiml;
- }
- case 3:
- { // update dialog content
- short dialogNameLen = *(short*)(data + 1);
- char* dialogName = new char[dialogNameLen + 1];
- memcpy(dialogName, data + 3, dialogNameLen);
- dialogName[dialogNameLen] = 0;
- for (UIMLDialog* dialog : dialogs)
- {
- if (dialog->getName().istGleich(dialogName))
- {
- int uimlLen = *(int*)(data + 3 + dialogNameLen);
- char* uiml = new char[uimlLen + 1];
- memcpy(uiml, data + 7 + dialogNameLen, uimlLen);
- uiml[uimlLen] = 0;
- dialog->updateUIML(uiml);
- delete[] uiml;
- break;
- }
- }
- }
- }
- }
- void Game::closeCurrentDialog()
- {
- if (dialogs.getEintragAnzahl() > 0)
- {
- UIMLDialog* d = dialogs.get(dialogs.getEintragAnzahl() - 1);
- d->close();
- }
- }
- DragController<InventoryDragSource, int>* Game::zInventoryDragController()
- {
- return inventoryDragController;
- }
- void Game::setTargetUIML(Framework::Text uiml)
- {
- if (uiml.getLength())
- {
- window->zBildschirm()->lock();
- targetUIMLView->setUIML(uiml);
- targetUIMLView->layout();
- window->zBildschirm()->unlock();
- targetUIMLView->setSize(targetUIMLView->calculateContentSize());
- targetUIMLView->setPosition(
- window->zBildschirm()->zGraphicsApi()->getBackBufferSize()
- - targetUIMLView->getSize());
- targetUIMLView->addStyle(UIMLView::Style::Sichtbar);
- }
- else
- {
- targetUIMLView->removeStyle(UIMLView::Style::Sichtbar);
- }
- }
- void Game::updateRecipieVisibility()
- {
- if (!recipieVisible)
- {
- if (dialogs.getEintragAnzahl() > 0)
- {
- recipieVisible = 1;
- window->zBildschirm()->addMember(
- dynamic_cast<Zeichnung*>(filter->getThis()));
- window->zBildschirm()->addMember(
- dynamic_cast<Zeichnung*>(searchIcon->getThis()));
- }
- }
- else
- {
- if (dialogs.getEintragAnzahl() == 0)
- {
- recipieVisible = 0;
- window->zBildschirm()->removeMember(filter);
- window->zBildschirm()->removeMember(searchIcon);
- if (itemListContainer)
- itemListContainer->removeStyle(Fenster::Style::Sichtbar);
- }
- }
- }
- void Game::showItemList()
- {
- if (!itemListContainer)
- {
- itemListContainer = new ItemListContainer();
- window->zBildschirm()->addMember(
- dynamic_cast<Zeichnung*>(itemListContainer->getThis()));
- }
- itemListContainer->addStyle(Fenster::Style::Sichtbar);
- }
- bool Game::isItemListVisible()
- {
- return itemListContainer
- && itemListContainer->hatStyle(Fenster::Style::Sichtbar);
- }
- const Text* Game::zFilterText()
- {
- return filter->zText();
- }
- void Game::makeChatButtonVisible()
- {
- chatButton->addStyle(Knopf::Style::Sichtbar);
- }
- Chat* Game::zChat() const
- {
- return chat;
- }
- MapWindow* Game::zMap() const
- {
- return mapWindow;
- }
- void Game::hide()
- {
- Menu::hide();
- window->zBildschirm()->postAction([this]() {
- if (itemListContainer)
- {
- window->zBildschirm()->removeMember(itemListContainer);
- itemListContainer->release();
- itemListContainer = 0;
- }
- });
- }
- ScreenCenter::ScreenCenter()
- : Zeichnung()
- {
- setPosition(0, 0);
- setSize(uiFactory.initParam.bildschirm->getBackBufferSize());
- }
- void ScreenCenter::render(Bild& zRObj)
- {
- zRObj.drawLinieH(gr.x / 2 - 5, gr.y / 2, 10, 0xFFFFFFFF);
- zRObj.drawLinieV(gr.x / 2, gr.y / 2 - 5, 10, 0xFFFFFFFF);
- }
|