1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285 |
- #include "stdafx.h"
- #include "CPlayerInterface.h"
- #include "CAdvMapInterface.h"
- #include "CMessage.h"
- #include "mapHandler.h"
- #include "SDL_Extensions.h"
- #include "SDL_framerate.h"
- #include "CScreenHandler.h"
- #include "CCursorHandler.h"
- #include "CCallback.h"
- #include "SDL_Extensions.h"
- #include "hch/CLodHandler.h"
- #include "CPathfinder.h"
- #include <sstream>
- #include "hch/CHeroHandler.h"
- #include "SDL_framerate.h"
- #include "hch/CGeneralTextHandler.h"
- using namespace CSDL_Ext;
- class OCM_HLP_CGIN
- {
- public:
- bool operator ()(const std::pair<CGObjectInstance*,std::pair<SDL_Rect, std::vector<std::list<int3>>>> & a, const std::pair<CGObjectInstance*,std::pair<SDL_Rect, std::vector<std::list<int3>>>> & b) const
- {
- return (*a.first)<(*b.first);
- }
- } ocmptwo_cgin ;
- CInfoWindow::CInfoWindow()
- :okb(NMessage::ok,NULL,&CInfoWindow::okClicked)
- {
- okb.ourObj = this;
- okb.delg = this;
- }
- void CInfoWindow::okClicked(tribool down)
- {
- if (!down)
- close();
- }
- void CInfoWindow::close()
- {
- for (int i=0;i<components.size();i++)
- {
- components[i]->deactivate();
- delete components[i];
- }
- components.clear();
- okb.deactivate();
- SDL_FreeSurface(bitmap);
- bitmap = NULL;
- LOCPLINT->removeObjToBlit(this);
- //delete this;
- LOCPLINT->adventureInt->show();
- }
- CInfoWindow::~CInfoWindow()
- {
- }
- SComponent::SComponent(Etype Type, int Subtype, int Val)
- {
- std::ostringstream oss;
- switch (Type)
- {
- case primskill:
- description = CGI->generaltexth->arraytxt[2+Subtype];
- oss << ((Val>0)?("+"):("-")) << Val << " " << CGI->heroh->pskillsn[Subtype];
- subtitle = oss.str();
- break;
- case resource:
- description = CGI->generaltexth->allTexts[242];
- std::ostringstream oss;
- oss << Val;
- subtitle = oss.str();
- break;
- }
- type = Type;
- subtype = Subtype;
- val = Val;
- SDL_Surface * temp = getImg();
- pos.w = temp->w;
- pos.h = temp->h;
- }
- SDL_Surface * SComponent::getImg()
- {
- switch (type)
- {
- case primskill:
- return CGI->heroh->pskillsb->ourImages[subtype].bitmap;
- break;
- case resource:
- return CGI->heroh->resources->ourImages[subtype].bitmap;
- break;
- }
- return NULL;
- }
- void SComponent::clickRight (tribool down)
- {
- LOCPLINT->adventureInt->handleRightClick(description,down,this);
- }
- void SComponent::activate()
- {
- ClickableR::activate();
- }
- void SComponent::deactivate()
- {
- ClickableR::deactivate();
- }
- void CSimpleWindow::show(SDL_Surface * to)
- {
- if(!to)
- to=ekran;
- blitAt(bitmap,pos.x,pos.y,to);
- }
- CSimpleWindow::~CSimpleWindow()
- {
- if (bitmap)
- {
- SDL_FreeSurface(bitmap);
- bitmap=NULL;
- }
- }
- template <typename T>CSCButton<T>::CSCButton(CDefHandler * img, CIntObject * obj, void(T::*poin)(tribool), T* Delg)
- {
- ourObj = obj;
- delg = Delg;
- func = poin;
- imgs.resize(1);
- for (int i =0; i<img->ourImages.size();i++)
- {
- imgs[0].push_back(img->ourImages[i].bitmap);
- }
- pos.w = imgs[0][0]->w;
- pos.h = imgs[0][0]->h;
- state = 0;
- }
- template <typename T> void CSCButton<T>::clickLeft (tribool down)
- {
- if (down)
- {
- state=1;
- }
- else
- {
- state=0;
- }
- show();
- if (delg)
- (delg->*func)(down);
- pressedL=state;
- }
- template <typename T> void CSCButton<typename T>::activate()
- {
- ClickableL::activate();
- }
- template <typename T> void CSCButton<typename T>::deactivate()
- {
- ClickableL::deactivate();
- }
- template <typename T> void CSCButton<typename T>::show(SDL_Surface * to)
- {
- if (delg) //we blit on our owner's bitmap
- {
- blitAt(imgs[curimg][state],posr.x,posr.y,delg->bitmap);
- updateRect(&genRect(pos.h,pos.w,posr.x,posr.y),delg->bitmap);
- }
- else
- {
- CButtonBase::show(to);
- }
- }
- CButtonBase::CButtonBase()
- {
- curimg=0;
- type=-1;
- abs=false;
- active=false;
- ourObj=NULL;
- state=0;
- }
- void CButtonBase::show(SDL_Surface * to)
- {
- if(!to)
- to=ekran;
- if (abs)
- {
- blitAt(imgs[curimg][state],pos.x,pos.y,to);
- updateRect(&pos,to);
- }
- else
- {
- blitAt(imgs[curimg][state],pos.x+ourObj->pos.x,pos.y+ourObj->pos.y,to);
- updateRect(&genRect(pos.h,pos.w,pos.x+ourObj->pos.x,pos.y+ourObj->pos.y),to);
-
- }
- }
- ClickableL::ClickableL()
- {
- pressedL=false;
- }
- void ClickableL::clickLeft(tribool down)
- {
- if (down)
- pressedL=true;
- else
- pressedL=false;
- }
- void ClickableL::activate()
- {
- LOCPLINT->lclickable.push_back(this);
- }
- void ClickableL::deactivate()
- {
- LOCPLINT->lclickable.erase
- (std::find(LOCPLINT->lclickable.begin(),LOCPLINT->lclickable.end(),this));
- }
- ClickableR::ClickableR()
- {
- pressedR=false;
- }
- void ClickableR::activate()
- {
- LOCPLINT->rclickable.push_back(this);
- }
- void ClickableR::deactivate()
- {
- LOCPLINT->rclickable.erase(std::find(LOCPLINT->rclickable.begin(),LOCPLINT->rclickable.end(),this));
- }
- void Hoverable::activate()
- {
- LOCPLINT->hoverable.push_back(this);
- }
- void Hoverable::deactivate()
- {
- LOCPLINT->hoverable.erase(std::find(LOCPLINT->hoverable.begin(),LOCPLINT->hoverable.end(),this));
- }
- void Hoverable::hover(bool on)
- {
- hovered=on;
- }
- void KeyInterested::activate()
- {
- LOCPLINT->keyinterested.push_back(this);
- }
- void KeyInterested::deactivate()
- {
- LOCPLINT->
- keyinterested.erase(std::find(LOCPLINT->keyinterested.begin(),LOCPLINT->keyinterested.end(),this));
- }
- void MotionInterested::activate()
- {
- LOCPLINT->motioninterested.push_back(this);
- }
- void MotionInterested::deactivate()
- {
- LOCPLINT->
- motioninterested.erase(std::find(LOCPLINT->motioninterested.begin(),LOCPLINT->motioninterested.end(),this));
- }
- CPlayerInterface::CPlayerInterface(int Player, int serial)
- {
- playerID=Player;
- serialID=serial;
- CGI->localPlayer = playerID;
- human=true;
- hInfo = CGI->bitmaph->loadBitmap("HEROQVBK.bmp");
- SDL_SetColorKey(hInfo,SDL_SRCCOLORKEY,SDL_MapRGB(hInfo->format,0,255,255));
- slotsPos.push_back(std::pair<int,int>(44,82));
- slotsPos.push_back(std::pair<int,int>(80,82));
- slotsPos.push_back(std::pair<int,int>(116,82));
- slotsPos.push_back(std::pair<int,int>(26,131));
- slotsPos.push_back(std::pair<int,int>(62,131));
- slotsPos.push_back(std::pair<int,int>(98,131));
- slotsPos.push_back(std::pair<int,int>(134,131));
- luck22 = CGI->spriteh->giveDefEss("ILCK22.DEF");
- luck30 = CGI->spriteh->giveDefEss("ILCK30.DEF");
- luck42 = CGI->spriteh->giveDefEss("ILCK42.DEF");
- luck82 = CGI->spriteh->giveDefEss("ILCK82.DEF");
- morale22 = CGI->spriteh->giveDefEss("IMRL22.DEF");
- morale30 = CGI->spriteh->giveDefEss("IMRL30.DEF");
- morale42 = CGI->spriteh->giveDefEss("IMRL42.DEF");
- morale82 = CGI->spriteh->giveDefEss("IMRL82.DEF");
- }
- void CPlayerInterface::init(ICallback * CB)
- {
- cb = dynamic_cast<CCallback*>(CB);
- CGI->localPlayer = serialID;
- adventureInt = new CAdvMapInt(playerID);
- }
- void CPlayerInterface::yourTurn()
- {
- makingTurn = true;
- CGI->localPlayer = serialID;
- unsigned char & animVal = LOCPLINT->adventureInt->anim; //for animations handling
- adventureInt->show();
- //show rest of things
- //initializing framerate keeper
- mainFPSmng = new FPSmanager;
- SDL_initFramerate(mainFPSmng);
- SDL_setFramerate(mainFPSmng, 24);
- SDL_Event sEvent;
- //framerate keeper initialized
- for(;makingTurn;) // main loop
- {
- CGI->screenh->updateScreen();
- LOCPLINT->adventureInt->updateScreen = false;
- while (SDL_PollEvent(&sEvent)) //wait for event...
- {
- handleEvent(&sEvent);
- }
- ++LOCPLINT->adventureInt->animValHitCount; //for animations
- if(LOCPLINT->adventureInt->animValHitCount == 2)
- {
- LOCPLINT->adventureInt->animValHitCount = 0;
- ++animVal;
- LOCPLINT->adventureInt->updateScreen = true;
- }
- if(LOCPLINT->adventureInt->scrollingLeft)
- {
- if(LOCPLINT->adventureInt->position.x>-Woff)
- {
- LOCPLINT->adventureInt->position.x--;
- LOCPLINT->adventureInt->updateScreen = true;
- adventureInt->updateMinimap=true;
- }
- }
- if(LOCPLINT->adventureInt->scrollingRight)
- {
- if(LOCPLINT->adventureInt->position.x<CGI->ac->map.width-19+4)
- {
- LOCPLINT->adventureInt->position.x++;
- LOCPLINT->adventureInt->updateScreen = true;
- adventureInt->updateMinimap=true;
- }
- }
- if(LOCPLINT->adventureInt->scrollingUp)
- {
- if(LOCPLINT->adventureInt->position.y>-Hoff)
- {
- LOCPLINT->adventureInt->position.y--;
- LOCPLINT->adventureInt->updateScreen = true;
- adventureInt->updateMinimap=true;
- }
- }
- if(LOCPLINT->adventureInt->scrollingDown)
- {
- if(LOCPLINT->adventureInt->position.y<CGI->ac->map.height-18+4)
- {
- LOCPLINT->adventureInt->position.y++;
- LOCPLINT->adventureInt->updateScreen = true;
- adventureInt->updateMinimap=true;
- }
- }
- if(LOCPLINT->adventureInt->updateScreen)
- {
- adventureInt->update();
- adventureInt->updateScreen=false;
- }
- if (LOCPLINT->adventureInt->updateMinimap)
- {
- adventureInt->minimap.draw();
- adventureInt->updateMinimap=false;
- }
- for(int i=0;i<objsToBlit.size();i++)
- objsToBlit[i]->show();
- SDL_Delay(5); //give time for other apps
- SDL_framerateDelay(mainFPSmng);
- }
- adventureInt->hide();
- }
- inline void subRect(const int & x, const int & y, const int & z, SDL_Rect & r, const int & hid)
- {
- for(int h=0; h<CGI->mh->ttiles[x][y][z].objects.size(); ++h)
- if(CGI->mh->ttiles[x][y][z].objects[h].first->id==hid)
- {
- CGI->mh->ttiles[x][y][z].objects[h].second.first = r;
- break;
- }
- }
- inline void delObjRect(const int & x, const int & y, const int & z, const int & hid)
- {
- for(int h=0; h<CGI->mh->ttiles[x][y][z].objects.size(); ++h)
- if(CGI->mh->ttiles[x][y][z].objects[h].first->id==hid)
- {
- CGI->mh->ttiles[x][y][z].objects.erase(CGI->mh->ttiles[x][y][z].objects.begin()+h);
- break;
- }
- }
- int getDir(int3 src, int3 dst)
- {
- int ret = -1;
- if(dst.x+1 == src.x && dst.y+1 == src.y) //tl
- {
- ret = 1;
- }
- else if(dst.x == src.x && dst.y+1 == src.y) //t
- {
- ret = 2;
- }
- else if(dst.x-1 == src.x && dst.y+1 == src.y) //tr
- {
- ret = 3;
- }
- else if(dst.x-1 == src.x && dst.y == src.y) //r
- {
- ret = 4;
- }
- else if(dst.x-1 == src.x && dst.y-1 == src.y) //br
- {
- ret = 5;
- }
- else if(dst.x == src.x && dst.y-1 == src.y) //b
- {
- ret = 6;
- }
- else if(dst.x+1 == src.x && dst.y-1 == src.y) //bl
- {
- ret = 7;
- }
- else if(dst.x+1 == src.x && dst.y == src.y) //l
- {
- ret = 8;
- }
- return ret;
- }
- void CPlayerInterface::heroMoved(const HeroMoveDetails & details)
- {
- //initializing objects and performing first step of move
- CGHeroInstance * ho = details.ho; //object representing this hero
- int3 hp = details.src;
- if (!details.successful)
- {
- ho->moveDir = getDir(details.src,details.dst);
- ho->isStanding = true;
- adventureInt->heroList.draw();
- if (adventureInt->terrain.currentPath)
- {
- delete adventureInt->terrain.currentPath;
- adventureInt->terrain.currentPath = NULL;
- }
- return;
- }
- if (adventureInt->terrain.currentPath) //&& hero is moving
- {
- adventureInt->terrain.currentPath->nodes.erase(adventureInt->terrain.currentPath->nodes.end()-1);
- }
- int3 buff = details.ho->pos;
- buff.x-=11;
- buff.y-=9;
- buff = repairScreenPos(buff);
- LOCPLINT->adventureInt->position = buff; //actualizing screen pos
- if(details.dst.x+1 == details.src.x && details.dst.y+1 == details.src.y) //tl
- {
- ho->moveDir = 1;
- ho->isStanding = false;
- CGI->mh->ttiles[hp.x-3][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, -31, -31), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 1, -31), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 33, -31), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 65, -31), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, -31, 1), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1, 1), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33, 1), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65, 1), ho->id);
- CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, -31, 33), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1, 33), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33, 33), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65, 33), ho->id);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- }
- else if(details.dst.x == details.src.x && details.dst.y+1 == details.src.y) //t
- {
- ho->moveDir = 2;
- ho->isStanding = false;
- CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 0, -31), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 32, -31), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 64, -31), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 0, 1), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 32, 1), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 64, 1), ho->id);
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 0, 33), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 32, 33), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 64, 33), ho->id);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- }
- else if(details.dst.x-1 == details.src.x && details.dst.y+1 == details.src.y) //tr
- {
- ho->moveDir = 3;
- ho->isStanding = false;
- CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, -1, -31), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 31, -31), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 63, -31), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x+1][hp.y-2][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 95, -31), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1, 1), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31, 1), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63, 1), ho->id);
- CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 95, 1), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1, 33), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31, 33), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63, 33), ho->id);
- CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 95, 33), std::vector<std::list<int3>>())));
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- }
- else if(details.dst.x-1 == details.src.x && details.dst.y == details.src.y) //r
- {
- ho->moveDir = 4;
- ho->isStanding = false;
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1, 0), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31, 0), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63, 0), ho->id);
- CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 95, 0), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1, 32), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31, 32), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63, 32), ho->id);
- CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 95, 32), std::vector<std::list<int3>>())));
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- }
- else if(details.dst.x-1 == details.src.x && details.dst.y-1 == details.src.y) //br
- {
- ho->moveDir = 5;
- ho->isStanding = false;
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1, -1), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31, -1), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63, -1), ho->id);
- CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 95, -1), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1, 31), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31, 31), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63, 31), ho->id);
- CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 95, 31), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, -1, 63), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 31, 63), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 63, 63), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x+1][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 95, 63), std::vector<std::list<int3>>())));
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- }
- else if(details.dst.x == details.src.x && details.dst.y-1 == details.src.y) //b
- {
- ho->moveDir = 6;
- ho->isStanding = false;
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 0, -1), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 32, -1), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 64, -1), ho->id);
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 0, 31), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 32, 31), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 64, 31), ho->id);
- CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 0, 63), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 32, 63), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 64, 63), std::vector<std::list<int3>>())));
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- }
- else if(details.dst.x+1 == details.src.x && details.dst.y-1 == details.src.y) //bl
- {
- ho->moveDir = 7;
- ho->isStanding = false;
- CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, -31, -1), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1, -1), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33, -1), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65, -1), ho->id);
- CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, -31, 31), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1, 31), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33, 31), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65, 31), ho->id);
- CGI->mh->ttiles[hp.x-3][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, -31, 63), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 1, 63), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 33, 63), std::vector<std::list<int3>>())));
- CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, 65, 63), std::vector<std::list<int3>>())));
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- }
- else if(details.dst.x+1 == details.src.x && details.dst.y == details.src.y) //l
- {
- ho->moveDir = 8;
- ho->isStanding = false;
- CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, -31, 0), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1, 0), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33, 0), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65, 0), ho->id);
- CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.push_back(std::make_pair(ho, std::make_pair(genRect(32, 32, -31, 32), std::vector<std::list<int3>>())));
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1, 32), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33, 32), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65, 32), ho->id);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- }
- //first initializing done
- SDL_framerateDelay(mainFPSmng); // after first move
- //main moving
- for(int i=1; i<32; i+=4)
- {
- if(details.dst.x+1 == details.src.x && details.dst.y+1 == details.src.y) //tl
- {
- subRect(hp.x-3, hp.y-2, hp.z, genRect(32, 32, -31+i, -31+i), ho->id);
- subRect(hp.x-2, hp.y-2, hp.z, genRect(32, 32, 1+i, -31+i), ho->id);
- subRect(hp.x-1, hp.y-2, hp.z, genRect(32, 32, 33+i, -31+i), ho->id);
- subRect(hp.x, hp.y-2, hp.z, genRect(32, 32, 65+i, -31+i), ho->id);
- subRect(hp.x-3, hp.y-1, hp.z, genRect(32, 32, -31+i, 1+i), ho->id);
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1+i, 1+i), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33+i, 1+i), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65+i, 1+i), ho->id);
- subRect(hp.x-3, hp.y, hp.z, genRect(32, 32, -31+i, 33+i), ho->id);
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1+i, 33+i), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33+i, 33+i), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65+i, 33+i), ho->id);
- /*std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);*/
- }
- else if(details.dst.x == details.src.x && details.dst.y+1 == details.src.y) //t
- {
- subRect(hp.x-2, hp.y-2, hp.z, genRect(32, 32, 0, -31+i), ho->id);
- subRect(hp.x-1, hp.y-2, hp.z, genRect(32, 32, 32, -31+i), ho->id);
- subRect(hp.x, hp.y-2, hp.z, genRect(32, 32, 64, -31+i), ho->id);
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 0, 1+i), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 32, 1+i), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 64, 1+i), ho->id);
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 0, 33+i), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 32, 33+i), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 64, 33+i), ho->id);
- /*std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);*/
- }
- else if(details.dst.x-1 == details.src.x && details.dst.y+1 == details.src.y) //tr
- {
- subRect(hp.x-2, hp.y-2, hp.z, genRect(32, 32, -1-i, -31+i), ho->id);
- subRect(hp.x-1, hp.y-2, hp.z, genRect(32, 32, 31-i, -31+i), ho->id);
- subRect(hp.x, hp.y-2, hp.z, genRect(32, 32, 63-i, -31+i), ho->id);
- subRect(hp.x+1, hp.y-2, hp.z, genRect(32, 32, 95-i, -31+i), ho->id);
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1-i, 1+i), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31-i, 1+i), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63-i, 1+i), ho->id);
- subRect(hp.x+1, hp.y-1, hp.z, genRect(32, 32, 95-i, 1+i), ho->id);
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1-i, 33+i), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31-i, 33+i), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63-i, 33+i), ho->id);
- subRect(hp.x+1, hp.y, hp.z, genRect(32, 32, 95-i, 33+i), ho->id);
- /*std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-2][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-2][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.end(), ocmptwo_cgin);*/
- }
- else if(details.dst.x-1 == details.src.x && details.dst.y == details.src.y) //r
- {
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1-i, 0), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31-i, 0), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63-i, 0), ho->id);
- subRect(hp.x+1, hp.y-1, hp.z, genRect(32, 32, 95-i, 0), ho->id);
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1-i, 32), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31-i, 32), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63-i, 32), ho->id);
- subRect(hp.x+1, hp.y, hp.z, genRect(32, 32, 95-i, 32), ho->id);
- /*std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.end(), ocmptwo_cgin);*/
- }
- else if(details.dst.x-1 == details.src.x && details.dst.y-1 == details.src.y) //br
- {
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, -1-i, -1-i), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 31-i, -1-i), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 63-i, -1-i), ho->id);
- subRect(hp.x+1, hp.y-1, hp.z, genRect(32, 32, 95-i, -1-i), ho->id);
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, -1-i, 31-i), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 31-i, 31-i), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 63-i, 31-i), ho->id);
- subRect(hp.x+1, hp.y, hp.z, genRect(32, 32, 95-i, 31-i), ho->id);
- subRect(hp.x-2, hp.y+1, hp.z, genRect(32, 32, -1-i, 63-i), ho->id);
- subRect(hp.x-1, hp.y+1, hp.z, genRect(32, 32, 31-i, 63-i), ho->id);
- subRect(hp.x, hp.y+1, hp.z, genRect(32, 32, 63-i, 63-i), ho->id);
- subRect(hp.x+1, hp.y+1, hp.z, genRect(32, 32, 95-i, 63-i), ho->id);
- /*std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x+1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x+1][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);*/
- }
- else if(details.dst.x == details.src.x && details.dst.y-1 == details.src.y) //b
- {
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 0, -1-i), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 32, -1-i), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 64, -1-i), ho->id);
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 0, 31-i), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 32, 31-i), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 64, 31-i), ho->id);
- subRect(hp.x-2, hp.y+1, hp.z, genRect(32, 32, 0, 63-i), ho->id);
- subRect(hp.x-1, hp.y+1, hp.z, genRect(32, 32, 32, 63-i), ho->id);
- subRect(hp.x, hp.y+1, hp.z, genRect(32, 32, 64, 63-i), ho->id);
- /*std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);*/
- }
- else if(details.dst.x+1 == details.src.x && details.dst.y-1 == details.src.y) //bl
- {
- subRect(hp.x-3, hp.y-1, hp.z, genRect(32, 32, -31+i, -1-i), ho->id);
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1+i, -1-i), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33+i, -1-i), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65+i, -1-i), ho->id);
- subRect(hp.x-3, hp.y, hp.z, genRect(32, 32, -31+i, 31-i), ho->id);
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1+i, 31-i), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33+i, 31-i), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65+i, 31-i), ho->id);
- subRect(hp.x-3, hp.y+1, hp.z, genRect(32, 32, -31+i, 63-i), ho->id);
- subRect(hp.x-2, hp.y+1, hp.z, genRect(32, 32, 1+i, 63-i), ho->id);
- subRect(hp.x-1, hp.y+1, hp.z, genRect(32, 32, 33+i, 63-i), ho->id);
- subRect(hp.x, hp.y+1, hp.z, genRect(32, 32, 65+i, 63-i), ho->id);
- /*std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y+1][hp.z].objects.end(), ocmptwo_cgin);*/
- }
- else if(details.dst.x+1 == details.src.x && details.dst.y == details.src.y) //l
- {
- subRect(hp.x-3, hp.y-1, hp.z, genRect(32, 32, -31+i, 0), ho->id);
- subRect(hp.x-2, hp.y-1, hp.z, genRect(32, 32, 1+i, 0), ho->id);
- subRect(hp.x-1, hp.y-1, hp.z, genRect(32, 32, 33+i, 0), ho->id);
- subRect(hp.x, hp.y-1, hp.z, genRect(32, 32, 65+i, 0), ho->id);
- subRect(hp.x-3, hp.y, hp.z, genRect(32, 32, -31+i, 32), ho->id);
- subRect(hp.x-2, hp.y, hp.z, genRect(32, 32, 1+i, 32), ho->id);
- subRect(hp.x-1, hp.y, hp.z, genRect(32, 32, 33+i, 32), ho->id);
- subRect(hp.x, hp.y, hp.z, genRect(32, 32, 65+i, 32), ho->id);
- /*std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y-1][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-3][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-2][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x-1][hp.y][hp.z].objects.end(), ocmptwo_cgin);
- std::stable_sort(CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.begin(), CGI->mh->ttiles[hp.x][hp.y][hp.z].objects.end(), ocmptwo_cgin);*/
- }
- LOCPLINT->adventureInt->update(); //updating screen
- CGI->screenh->updateScreen();
- LOCPLINT->adventureInt->anim++;
- SDL_framerateDelay(mainFPSmng); //for animation purposes
- } //for(int i=1; i<32; i+=4)
- //main moving done
- //finishing move
- if(details.dst.x+1 == details.src.x && details.dst.y+1 == details.src.y) //tl
- {
- delObjRect(hp.x, hp.y-2, hp.z, ho->id);
- delObjRect(hp.x, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x, hp.y, hp.z, ho->id);
- delObjRect(hp.x-1, hp.y, hp.z, ho->id);
- delObjRect(hp.x-2, hp.y, hp.z, ho->id);
- delObjRect(hp.x-3, hp.y, hp.z, ho->id);
- }
- else if(details.dst.x == details.src.x && details.dst.y+1 == details.src.y) //t
- {
- delObjRect(hp.x, hp.y, hp.z, ho->id);
- delObjRect(hp.x-1, hp.y, hp.z, ho->id);
- delObjRect(hp.x-2, hp.y, hp.z, ho->id);
- }
- else if(details.dst.x-1 == details.src.x && details.dst.y+1 == details.src.y) //tr
- {
- delObjRect(hp.x-2, hp.y-2, hp.z, ho->id);
- delObjRect(hp.x-2, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x+1, hp.y, hp.z, ho->id);
- delObjRect(hp.x, hp.y, hp.z, ho->id);
- delObjRect(hp.x-1, hp.y, hp.z, ho->id);
- delObjRect(hp.x-2, hp.y, hp.z, ho->id);
- }
- else if(details.dst.x-1 == details.src.x && details.dst.y == details.src.y) //r
- {
- delObjRect(hp.x-2, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x-2, hp.y, hp.z, ho->id);
- }
- else if(details.dst.x-1 == details.src.x && details.dst.y-1 == details.src.y) //br
- {
- delObjRect(hp.x-2, hp.y+1, hp.z, ho->id);
- delObjRect(hp.x-2, hp.y, hp.z, ho->id);
- delObjRect(hp.x+1, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x-1, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x-2, hp.y-1, hp.z, ho->id);
- }
- else if(details.dst.x == details.src.x && details.dst.y-1 == details.src.y) //b
- {
- delObjRect(hp.x, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x-1, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x-2, hp.y-1, hp.z, ho->id);
- }
- else if(details.dst.x+1 == details.src.x && details.dst.y-1 == details.src.y) //bl
- {
- delObjRect(hp.x, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x-1, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x-2, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x-3, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x, hp.y, hp.z, ho->id);
- delObjRect(hp.x, hp.y+1, hp.z, ho->id);
- }
- else if(details.dst.x+1 == details.src.x && details.dst.y == details.src.y) //l
- {
- delObjRect(hp.x, hp.y-1, hp.z, ho->id);
- delObjRect(hp.x, hp.y, hp.z, ho->id);
- }
- ho->pos = details.dst; //copy of hero's position
- //ho->moveDir = 0; //move ended
- ho->isStanding = true;
- //move finished
- CGI->mh->recalculateHideVisPosUnderObj(details.ho, true);
- adventureInt->minimap.draw();
- adventureInt->heroList.draw();
- }
- void CPlayerInterface::heroKilled(const CGHeroInstance*)
- {
- }
- void CPlayerInterface::heroCreated(const CGHeroInstance * hero)
- {
- }
- SDL_Surface * CPlayerInterface::infoWin(const void * specific) //specific=0 => draws info about selected town/hero //TODO - gdy sie dorobi sensowna hierarchie klas ins. to wywalic tego brzydkiego void*
- {
- if (specific)
- ;//TODO: dorobic, ale w ogole to moze lepiej najpierw zastapic tego voida czym innym
- else
- {
- if (adventureInt->selection.type == HEROI_TYPE)
- {
- char * buf = new char[10];
- SDL_Surface * ret = copySurface(hInfo);
- SDL_SetColorKey(ret,SDL_SRCCOLORKEY,SDL_MapRGB(ret->format,0,255,255));
- blueToPlayersAdv(ret,playerID,1);
- const CGHeroInstance * curh = (const CGHeroInstance *)adventureInt->selection.selected;
- printAt(curh->name,75,15,GEOR13,zwykly,ret);
- for (int i=0;i<PRIMARY_SKILLS;i++)
- {
- itoa(curh->primSkills[i],buf,10);
- printAtMiddle(buf,84+28*i,68,GEOR13,zwykly,ret);
- }
- for (std::map<int,std::pair<CCreature*,int> >::const_iterator i=curh->army.slots.begin(); i!=curh->army.slots.end();i++)
- {
- blitAt(CGI->creh->smallImgs[(*i).second.first->idNumber],slotsPos[(*i).first].first+1,slotsPos[(*i).first].second+1,ret);
- itoa((*i).second.second,buf,10);
- printAtMiddle(buf,slotsPos[(*i).first].first+17,slotsPos[(*i).first].second+39,GEORM,zwykly,ret);
- }
- blitAt(curh->type->portraitLarge,11,12,ret);
- itoa(curh->mana,buf,10);
- printAtMiddle(buf,166,109,GEORM,zwykly,ret); //mana points
- delete buf;
- blitAt(morale22->ourImages[curh->getCurrentMorale()+3].bitmap,14,84,ret);
- blitAt(luck22->ourImages[curh->getCurrentLuck()+3].bitmap,14,101,ret);
- //SDL_SaveBMP(ret,"inf1.bmp");
- return ret;
- }
- else if (adventureInt->selection.type == TOWNI_TYPE)
- {
- char * buf = new char[10];
- SDL_Surface * ret = copySurface(hInfo);
- return ret;
- }
- else
- return NULL;
- }
- return NULL;
- }
- void CPlayerInterface::handleEvent(SDL_Event *sEvent)
- {
- current = sEvent;
- if(sEvent->type == SDL_MOUSEMOTION)
- {
- CGI->curh->cursorMove(sEvent->motion.x, sEvent->motion.y);
- }
- if(sEvent->type==SDL_QUIT)
- exit(0);
- else if (sEvent->type==SDL_KEYDOWN)
- {
- switch (sEvent->key.keysym.sym)
- {
- case SDLK_LEFT:
- {
- LOCPLINT->adventureInt->scrollingLeft = true;
- break;
- }
- case (SDLK_RIGHT):
- {
- LOCPLINT->adventureInt->scrollingRight = true;
- break;
- }
- case (SDLK_UP):
- {
- LOCPLINT->adventureInt->scrollingUp = true;
- break;
- }
- case (SDLK_DOWN):
- {
- LOCPLINT->adventureInt->scrollingDown = true;
- break;
- }
- case (SDLK_q):
- {
- exit(0);
- break;
- }
- case (SDLK_u):
- {
- adventureInt->underground.clickLeft(true);
- }
- }
- } //keydown end
- else if(sEvent->type==SDL_KEYUP)
- {
- switch (sEvent->key.keysym.sym)
- {
- case SDLK_LEFT:
- {
- LOCPLINT->adventureInt->scrollingLeft = false;
- break;
- }
- case (SDLK_RIGHT):
- {
- LOCPLINT->adventureInt->scrollingRight = false;
- break;
- }
- case (SDLK_UP):
- {
- LOCPLINT->adventureInt->scrollingUp = false;
- break;
- }
- case (SDLK_DOWN):
- {
- LOCPLINT->adventureInt->scrollingDown = false;
- break;
- }
- case (SDLK_u):
- {
- adventureInt->underground.clickLeft(false);
- }
- }
- }//keyup end
- else if(sEvent->type==SDL_MOUSEMOTION)
- {
- for (int i=0; i<hoverable.size();i++)
- {
- if (isItIn(&hoverable[i]->pos,sEvent->motion.x,sEvent->motion.y))
- {
- if (!hoverable[i]->hovered)
- hoverable[i]->hover(true);
- }
- else if (hoverable[i]->hovered)
- {
- hoverable[i]->hover(false);
- }
- }
- for(int i=0; i<motioninterested.size();i++)
- {
- if (isItIn(&motioninterested[i]->pos,sEvent->motion.x,sEvent->motion.y))
- {
- motioninterested[i]->mouseMoved(sEvent->motion);
- }
- }
- if(sEvent->motion.x<15)
- {
- LOCPLINT->adventureInt->scrollingLeft = true;
- }
- else
- {
- LOCPLINT->adventureInt->scrollingLeft = false;
- }
- if(sEvent->motion.x>ekran->w-15)
- {
- LOCPLINT->adventureInt->scrollingRight = true;
- }
- else
- {
- LOCPLINT->adventureInt->scrollingRight = false;
- }
- if(sEvent->motion.y<15)
- {
- LOCPLINT->adventureInt->scrollingUp = true;
- }
- else
- {
- LOCPLINT->adventureInt->scrollingUp = false;
- }
- if(sEvent->motion.y>ekran->h-15)
- {
- LOCPLINT->adventureInt->scrollingDown = true;
- }
- else
- {
- LOCPLINT->adventureInt->scrollingDown = false;
- }
- } //mousemotion end
- else if ((sEvent->type==SDL_MOUSEBUTTONDOWN) && (sEvent->button.button == SDL_BUTTON_LEFT))
- {
- LOGE("Left mouse button down1");
- for(int i=0; i<lclickable.size();i++)
- {
- if (isItIn(&lclickable[i]->pos,sEvent->motion.x,sEvent->motion.y))
- {
- lclickable[i]->clickLeft(true);
- }
- }
- }
- else if ((sEvent->type==SDL_MOUSEBUTTONUP) && (sEvent->button.button == SDL_BUTTON_LEFT))
- {
- for(int i=0; i<lclickable.size();i++)
- {
- if (isItIn(&lclickable[i]->pos,sEvent->motion.x,sEvent->motion.y))
- {
- lclickable[i]->clickLeft(false);
- }
- else
- lclickable[i]->clickLeft(boost::logic::indeterminate);
- }
- }
- else if ((sEvent->type==SDL_MOUSEBUTTONDOWN) && (sEvent->button.button == SDL_BUTTON_RIGHT))
- {
- for(int i=0; i<rclickable.size();i++)
- {
- if (isItIn(&rclickable[i]->pos,sEvent->motion.x,sEvent->motion.y))
- {
- rclickable[i]->clickRight(true);
- }
- }
- }
- else if ((sEvent->type==SDL_MOUSEBUTTONUP) && (sEvent->button.button == SDL_BUTTON_RIGHT))
- {
- for(int i=0; i<rclickable.size();i++)
- {
- if (isItIn(&rclickable[i]->pos,sEvent->motion.x,sEvent->motion.y))
- {
- rclickable[i]->clickRight(false);
- }
- else
- rclickable[i]->clickRight(boost::logic::indeterminate);
- }
- }
- current = NULL;
- } //event end
- int3 CPlayerInterface::repairScreenPos(int3 pos)
- {
- if(pos.x<=-Woff)
- pos.x = -Woff+1;
- if(pos.y<=-Hoff)
- pos.y = -Hoff+1;
- if(pos.x>CGI->mh->reader->map.width - this->adventureInt->terrain.tilesw + Woff)
- pos.x = CGI->mh->reader->map.width - this->adventureInt->terrain.tilesw + Woff;
- if(pos.y>CGI->mh->reader->map.height - this->adventureInt->terrain.tilesh + Hoff)
- pos.y = CGI->mh->reader->map.height - this->adventureInt->terrain.tilesh + Hoff;
- return pos;
- }
- void CPlayerInterface::heroPrimarySkillChanged(const CGHeroInstance * hero, int which, int val)
- {
- if (adventureInt->selection.selected == hero)
- adventureInt->infoBar.draw();
- return;
- }
- void CPlayerInterface::receivedResource(int type, int val)
- {
- adventureInt->resdatabar.draw();
- }
- void CPlayerInterface::showInfoDialog(std::string text, std::vector<SComponent*> & components)
- {
- adventureInt->hide(); //dezaktywacja starego interfejsu
- CInfoWindow * temp = CMessage::genIWindow(text,LOCPLINT->playerID,32,components);
- LOCPLINT->objsToBlit.push_back(temp);
- temp->pos.x=300-(temp->pos.w/2);
- temp->pos.y=300-(temp->pos.h/2);
- temp->okb.pos.x = temp->okb.posr.x + temp->pos.x;
- temp->okb.pos.y = temp->okb.posr.y + temp->pos.y;
- temp->okb.activate();
- for (int i=0;i<temp->components.size();i++)
- {
- temp->components[i]->activate();
- temp->components[i]->pos.x += temp->pos.x;
- temp->components[i]->pos.y += temp->pos.y;
- }
- }
- void CPlayerInterface::removeObjToBlit(IShowable* obj)
- {
- objsToBlit.erase
- (std::find(objsToBlit.begin(),objsToBlit.end(),obj));
- //delete obj;
- }
|