| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712 |
- #include "CBattleInterface.h"
- #include "CGameInfo.h"
- #include "hch\CLodHandler.h"
- #include "SDL_Extensions.h"
- #include "CAdvmapInterface.h"
- #include "AdventureMapButton.h"
- #include "hch\CHeroHandler.h"
- #include "hch\CDefHandler.h"
- #include "CCallback.h"
- #include "CGameState.h"
- #include "hch\CGeneralTextHandler.h"
- #include <queue>
- #include <sstream>
- extern SDL_Surface * screen;
- extern TTF_Font * GEOR13;
- extern SDL_Color zwykly;
- SDL_Surface * CBattleInterface::cellBorder, * CBattleInterface::cellShade;
- CBattleInterface::CBattleInterface(CCreatureSet * army1, CCreatureSet * army2, CGHeroInstance *hero1, CGHeroInstance *hero2)
- : printCellBorders(true), attackingHeroInstance(hero1), defendingHeroInstance(hero2), animCount(0), activeStack(-1), givenCommand(NULL)
- {
- //initializing armies
- this->army1 = army1;
- this->army2 = army2;
- std::map<int, CStack> stacks = LOCPLINT->cb->battleGetStacks();
- for(std::map<int, CStack>::iterator b=stacks.begin(); b!=stacks.end(); ++b)
- {
- std::pair <int, int> coords = CBattleHex::getXYUnitAnim(b->second.position, b->second.owner == attackingHeroInstance->tempOwner, b->second.creature);
- creAnims[b->second.ID] = (new CCreatureAnimation(b->second.creature->animDefName));
- creAnims[b->second.ID]->setType(2);
- creAnims[b->second.ID]->pos = genRect(creAnims[b->second.ID]->fullHeight, creAnims[b->second.ID]->fullWidth, coords.first, coords.second);
- creDir[b->second.ID] = b->second.owner==attackingHeroInstance->tempOwner;
- }
- //preparing menu background and terrain
- std::vector< std::string > & backref = CGI->mh->battleBacks[ LOCPLINT->cb->battleGetBattlefieldType() ];
- background = CGI->bitmaph->loadBitmap(backref[ rand() % backref.size()] );
- menu = CGI->bitmaph->loadBitmap("CBAR.BMP");
- CSDL_Ext::blueToPlayersAdv(menu, hero1->tempOwner);
- //preparing graphics for displaying amounts of creatures
- amountBasic = CGI->bitmaph->loadBitmap("CMNUMWIN.BMP");
- amountNormal = CGI->bitmaph->loadBitmap("CMNUMWIN.BMP");
- CSDL_Ext::alphaTransform(amountNormal);
- for(int g=0; g<amountNormal->format->palette->ncolors; ++g)
- {
- if((amountNormal->format->palette->colors+g)->b != 132 &&
- (amountNormal->format->palette->colors+g)->g != 231 &&
- (amountNormal->format->palette->colors+g)->r != 255) //it's not yellow border
- {
- (amountNormal->format->palette->colors+g)->r = (float)((amountNormal->format->palette->colors+g)->r) * 0.54f;
- (amountNormal->format->palette->colors+g)->g = (float)((amountNormal->format->palette->colors+g)->g) * 0.19f;
- (amountNormal->format->palette->colors+g)->b = (float)((amountNormal->format->palette->colors+g)->b) * 0.93f;
- }
- }
- //blitting menu background and terrain
- blitAt(background, 0, 0);
- blitAt(menu, 0, 556);
- CSDL_Ext::update();
-
- //preparing buttons and console
- bOptions = new AdventureMapButton<CBattleInterface> (std::string(), std::string(), &CBattleInterface::bOptionsf, 3, 561, "icm003.def", this, false, NULL, false);
- bSurrender = new AdventureMapButton<CBattleInterface> (std::string(), std::string(), &CBattleInterface::bSurrenderf, 54, 561, "icm001.def", this, false, NULL, false);
- bFlee = new AdventureMapButton<CBattleInterface> (std::string(), std::string(), &CBattleInterface::bFleef, 105, 561, "icm002.def", this, false, NULL, false);
- bAutofight = new AdventureMapButton<CBattleInterface> (std::string(), std::string(), &CBattleInterface::bAutofightf, 157, 561, "icm004.def", this, false, NULL, false);
- bSpell = new AdventureMapButton<CBattleInterface> (std::string(), std::string(), &CBattleInterface::bSpellf, 645, 561, "icm005.def", this, false, NULL, false);
- bWait = new AdventureMapButton<CBattleInterface> (std::string(), std::string(), &CBattleInterface::bWaitf, 696, 561, "icm006.def", this, false, NULL, false);
- bDefence = new AdventureMapButton<CBattleInterface> (std::string(), std::string(), &CBattleInterface::bDefencef, 747, 561, "icm007.def", this, false, NULL, false);
- bConsoleUp = new AdventureMapButton<CBattleInterface> (std::string(), std::string(), &CBattleInterface::bConsoleUpf, 624, 561, "ComSlide.def", this, false, NULL, false);
- bConsoleDown = new AdventureMapButton<CBattleInterface> (std::string(), std::string(), &CBattleInterface::bConsoleDownf, 624, 580, "ComSlide.def", this, false, NULL, false);
- bConsoleDown->bitmapOffset = 2;
- console = new CBattleConsole();
- console->pos.x = 211;
- console->pos.y = 560;
- console->pos.w = 406;
- console->pos.h = 38;
-
- //loading hero animations
- if(hero1) // attacking hero
- {
- attackingHero = new CBattleHero(CGI->mh->battleHeroes[hero1->type->heroType], 0, 0, false, hero1->tempOwner);
- attackingHero->pos = genRect(attackingHero->dh->ourImages[0].bitmap->h, attackingHero->dh->ourImages[0].bitmap->w, -40, 0);
- }
- else
- {
- attackingHero = NULL;
- }
- if(hero2) // defending hero
- {
- defendingHero = new CBattleHero(CGI->mh->battleHeroes[hero2->type->heroType], 0, 0, true, hero2->tempOwner);
- defendingHero->pos = genRect(defendingHero->dh->ourImages[0].bitmap->h, defendingHero->dh->ourImages[0].bitmap->w, 690, 0);
- }
- else
- {
- defendingHero = NULL;
- }
- //preparing cells and hexes
- cellBorder = CGI->bitmaph->loadBitmap("CCELLGRD.BMP");
- cellBorder = CSDL_Ext::alphaTransform(cellBorder);
- cellShade = CGI->bitmaph->loadBitmap("CCELLSHD.BMP");
- cellShade = CSDL_Ext::alphaTransform(cellShade);
- for(int h=0; h<187; ++h)
- {
- bfield[h].myNumber = h;
-
- int x = 14 + ((h/17)%2==0 ? 22 : 0) + 44*(h%17);
- int y = 86 + 42 * (h/17);
- bfield[h].pos = genRect(cellShade->h, cellShade->w, x, y);
- bfield[h].accesible = true;
- bfield[h].myInterface = this;
- }
- //locking occupied positions on batlefield
- for(std::map<int, CStack>::iterator it = stacks.begin(); it!=stacks.end(); ++it) //stacks gained at top of this function
- {
- bfield[it->second.position].accesible = false;
- }
-
- }
- CBattleInterface::~CBattleInterface()
- {
- SDL_FreeSurface(background);
- SDL_FreeSurface(menu);
- SDL_FreeSurface(amountBasic);
- SDL_FreeSurface(amountNormal);
- delete bOptions;
- delete bSurrender;
- delete bFlee;
- delete bAutofight;
- delete bSpell;
- delete bWait;
- delete bDefence;
- delete bConsoleUp;
- delete bConsoleDown;
- delete console;
- delete attackingHero;
- delete defendingHero;
- SDL_FreeSurface(cellBorder);
- SDL_FreeSurface(cellShade);
- for(int g=0; g<creAnims.size(); ++g)
- delete creAnims[g];
- }
- void CBattleInterface::activate()
- {
- bOptions->activate();
- bSurrender->activate();
- bFlee->activate();
- bAutofight->activate();
- bSpell->activate();
- bWait->activate();
- bDefence->activate();
- bConsoleUp->activate();
- bConsoleDown->activate();
- for(int b=0; b<187; ++b)
- {
- bfield[b].activate();
- }
- }
- void CBattleInterface::deactivate()
- {
- bOptions->deactivate();
- bSurrender->deactivate();
- bFlee->deactivate();
- bAutofight->deactivate();
- bSpell->deactivate();
- bWait->deactivate();
- bDefence->deactivate();
- bConsoleUp->deactivate();
- bConsoleDown->deactivate();
- for(int b=0; b<187; ++b)
- {
- bfield[b].deactivate();
- }
- }
- void CBattleInterface::show(SDL_Surface * to)
- {
- std::map<int, CStack> stacks = LOCPLINT->cb->battleGetStacks(); //used in a few places
- ++animCount;
- if(!to) //"evaluating" to
- to = screen;
- //showing background
- blitAt(background, 0, 0, to);
- if(printCellBorders) //printing cell borders
- {
- for(int i=0; i<11; ++i) //rows
- {
- for(int j=0; j<15; ++j) //columns
- {
- int x = 58 + (i%2==0 ? 22 : 0) + 44*j;
- int y = 86 + 42 * i;
- CSDL_Ext::blit8bppAlphaTo24bpp(cellBorder, NULL, to, &genRect(cellBorder->h, cellBorder->w, x, y));
- }
- }
- }
- //printing hovered cell
- for(int b=0; b<187; ++b)
- {
- if(bfield[b].strictHovered && bfield[b].hovered)
- {
- int x = 14 + ((b/17)%2==0 ? 22 : 0) + 44*(b%17);
- int y = 86 + 42 * (b/17);
- CSDL_Ext::blit8bppAlphaTo24bpp(cellShade, NULL, to, &genRect(cellShade->h, cellShade->w, x, y));
- }
- }
- //showing selected unit's range
- showRange(to, activeStack);
- //showing menu background and console
- blitAt(menu, 0, 556, to);
- console->show(to);
- //showing buttons
- bOptions->show(to);
- bSurrender->show(to);
- bFlee->show(to);
- bAutofight->show(to);
- bSpell->show(to);
- bWait->show(to);
- bDefence->show(to);
- bConsoleUp->show(to);
- bConsoleDown->show(to);
- //showing hero animations
- if(attackingHero)
- attackingHero->show(to);
- if(defendingHero)
- defendingHero->show(to);
- //showing units //a lot of work...
- int stackByHex[187];
- for(int b=0; b<187; ++b)
- stackByHex[b] = -1;
- for(std::map<int, CStack>::iterator j=stacks.begin(); j!=stacks.end(); ++j)
- {
- stackByHex[j->second.position] = j->second.ID;
- }
- for(int b=0; b<187; ++b)
- {
- if(stackByHex[b]!=-1)
- {
- creAnims[stackByHex[b]]->nextFrame(to, creAnims[stackByHex[b]]->pos.x, creAnims[stackByHex[b]]->pos.y, creDir[stackByHex[b]], animCount%2==0 || creAnims[stackByHex[b]]->getType()==0, stackByHex[b]==activeStack); //increment always when moving
- //printing amount
- if(stacks[stackByHex[b]].attackerOwned)
- {
- CSDL_Ext::blit8bppAlphaTo24bpp(amountNormal, NULL, to, &genRect(amountNormal->h, amountNormal->w, creAnims[stackByHex[b]]->pos.x + 220, creAnims[stackByHex[b]]->pos.y + 260));
- std::stringstream ss;
- ss<<stacks[stackByHex[b]].amount;
- CSDL_Ext::printAtMiddleWB(ss.str(), creAnims[stackByHex[b]]->pos.x + 220 + 14, creAnims[stackByHex[b]]->pos.y + 260 + 4, GEOR13, 20, zwykly, to);
- }
- else
- {
- CSDL_Ext::blit8bppAlphaTo24bpp(amountNormal, NULL, to, &genRect(amountNormal->h, amountNormal->w, creAnims[stackByHex[b]]->pos.x + 202, creAnims[stackByHex[b]]->pos.y + 260));
- std::stringstream ss;
- ss<<stacks[stackByHex[b]].amount;
- CSDL_Ext::printAtMiddleWB(ss.str(), creAnims[stackByHex[b]]->pos.x + 202 + 14, creAnims[stackByHex[b]]->pos.y + 260 + 4, GEOR13, 20, zwykly, to);
- }
- }
- }
- //units shown
- CSDL_Ext::update();
- }
- bool CBattleInterface::reverseCreature(int number, int hex)
- {
- if(creAnims[number]==NULL)
- return false; //there is no such creature
- creAnims[number]->setType(8);
- for(int g=0; g<creAnims[number]->framesInGroup(8); ++g)
- {
- show();
- SDL_framerateDelay(LOCPLINT->mainFPSmng);
- }
- creDir[number] = !creDir[number];
- CStack curs = LOCPLINT->cb->battleGetStackByID(number);
- std::pair <int, int> coords = CBattleHex::getXYUnitAnim(hex, creDir[number], curs.creature);
- creAnims[number]->pos.x = coords.first;
- creAnims[number]->pos.y = coords.second;
- creAnims[number]->setType(7);
- for(int g=0; g<creAnims[number]->framesInGroup(7); ++g)
- {
- show();
- SDL_framerateDelay(LOCPLINT->mainFPSmng);
- }
- creAnims[number]->setType(2);
- return true;
- }
- void CBattleInterface::bOptionsf()
- {
- }
- void CBattleInterface::bSurrenderf()
- {
- }
- void CBattleInterface::bFleef()
- {
- BattleAction * ba = new BattleAction;
- ba->actionType = 4;
- givenCommand = ba;
- }
- void CBattleInterface::bAutofightf()
- {
- }
- void CBattleInterface::bSpellf()
- {
- }
- void CBattleInterface::bWaitf()
- {
- }
- void CBattleInterface::bDefencef()
- {
- BattleAction * ba = new BattleAction;
- ba->actionType = 3;
- ba->stackNumber = activeStack;
- givenCommand = ba;
- }
- void CBattleInterface::bConsoleUpf()
- {
- console->scrollUp();
- }
- void CBattleInterface::bConsoleDownf()
- {
- console->scrollDown();
- }
- void CBattleInterface::newStack(CStack stack)
- {
- creAnims[stack.ID] = new CCreatureAnimation(stack.creature->animDefName);
- creAnims[stack.ID]->setType(2);
- creDir[stack.ID] = stack.owner==attackingHeroInstance->tempOwner;
- }
- void CBattleInterface::stackRemoved(CStack stack)
- {
- delete creAnims[stack.ID];
- creAnims.erase(stack.ID);
- }
- void CBattleInterface::stackActivated(int number)
- {
- givenCommand = NULL;
- activeStack = number;
- }
- void CBattleInterface::stackMoved(int number, int destHex, bool startMoving, bool endMoving)
- {
- int curStackPos = LOCPLINT->cb->battleGetPos(number);
- int steps = creAnims[number]->framesInGroup(0);
- int hexWbase = 44, hexHbase = 42;
- if(startMoving) //animation of starting move
- {
- for(int i=0; i<creAnims[number]->framesInGroup(20); ++i)
- {
- show();
- SDL_framerateDelay(LOCPLINT->mainFPSmng);
- }
- }
- switch(CBattleHex::mutualPosition(curStackPos, destHex)) //reverse unit if necessary
- {
- case 0:
- if(creDir[number] == true)
- reverseCreature(number, curStackPos);
- break;
- case 1:
- if(creDir[number] == false)
- reverseCreature(number, curStackPos);
- break;
- case 2:
- if(creDir[number] == false)
- reverseCreature(number, curStackPos);
- break;
- case 3:
- if(creDir[number] == false)
- reverseCreature(number, curStackPos);
- break;
- case 4:
- if(creDir[number] == true)
- reverseCreature(number, curStackPos);
- break;
- case 5:
- if(creDir[number] == true)
- reverseCreature(number, curStackPos);
- break;
- }
- //moving instructions
- creAnims[number]->setType(0);
- for(int i=0; i<steps; ++i)
- {
- switch(CBattleHex::mutualPosition(curStackPos, destHex))
- {
- case 0:
- creAnims[number]->pos.x -= hexWbase/(2*steps);
- creAnims[number]->pos.y -= hexHbase/steps;
- break;
- case 1:
- creAnims[number]->pos.x += hexWbase/(2*steps);
- creAnims[number]->pos.y -= hexHbase/steps;
- break;
- case 2:
- creAnims[number]->pos.x += hexWbase/steps;
- break;
- case 3:
- creAnims[number]->pos.x += hexWbase/(2*steps);
- creAnims[number]->pos.y += hexHbase/steps;
- break;
- case 4:
- creAnims[number]->pos.x -= hexWbase/(2*steps);
- creAnims[number]->pos.y += hexHbase/steps;
- break;
- case 5:
- creAnims[number]->pos.x -= hexWbase/steps;
- break;
- }
- show();
- SDL_framerateDelay(LOCPLINT->mainFPSmng);
- }
- if(endMoving) //animation of starting move
- {
- for(int i=0; i<creAnims[number]->framesInGroup(21); ++i)
- {
- show();
- SDL_framerateDelay(LOCPLINT->mainFPSmng);
- }
- }
-
- creAnims[number]->setType(2); //resetting to default
- CStack curs = LOCPLINT->cb->battleGetStackByID(number);
- if(endMoving) //resetting to default
- {
- if(creDir[number] != (curs.owner == attackingHeroInstance->tempOwner))
- reverseCreature(number, destHex);
- //creDir[number] = (curs.owner == attackingHeroInstance->tempOwner);
- }
-
- std::pair <int, int> coords = CBattleHex::getXYUnitAnim(destHex, creDir[number], curs.creature);
- creAnims[number]->pos.x = coords.first;
- creAnims[number]->pos.y = coords.second;
- }
- void CBattleInterface::stackAttacking(int ID, int dest)
- {
- }
- void CBattleInterface::newRound(int number)
- {
- console->addText(CGI->generaltexth->allTexts[412]);
- }
- void CBattleInterface::hexLclicked(int whichOne)
- {
- if((whichOne%17)!=0 && (whichOne%17)!=16) //if player is trying to attack enemey unit or move creature stack
- {
- BattleAction * ba = new BattleAction(); //to be deleted by engine
- ba->actionType = 6;
- ba->destinationTile = whichOne;
- ba->stackNumber = activeStack;
- givenCommand = ba;
- }
- }
- void CBattleInterface::showRange(SDL_Surface * to, int ID)
- {
- std::vector<int> shadedHexes = LOCPLINT->cb->battleGetAvailableHexes(ID);
- for(int i=0; i<shadedHexes.size(); ++i)
- {
- CSDL_Ext::blit8bppAlphaTo24bpp(CBattleInterface::cellShade, NULL, to, &bfield[shadedHexes[i]].pos);
- }
- }
- void CBattleHero::show(SDL_Surface *to)
- {
- //animation of flag
- if(flip)
- {
- CSDL_Ext::blit8bppAlphaTo24bpp(flag->ourImages[flagAnim].bitmap, NULL, screen, &genRect(flag->ourImages[flagAnim].bitmap->h, flag->ourImages[flagAnim].bitmap->w, 752, 39));
- }
- else
- {
- CSDL_Ext::blit8bppAlphaTo24bpp(flag->ourImages[flagAnim].bitmap, NULL, screen, &genRect(flag->ourImages[flagAnim].bitmap->h, flag->ourImages[flagAnim].bitmap->w, 31, 39));
- }
- {
- ++flagAnim;
- flagAnim %= flag->ourImages.size();
- }
- //animation of hero
- int tick=-1;
- for(int i=0; i<dh->ourImages.size(); ++i)
- {
- if(dh->ourImages[i].groupNumber==phase)
- ++tick;
- if(tick==image)
- {
- SDL_Rect posb = pos;
- CSDL_Ext::blit8bppAlphaTo24bpp(dh->ourImages[i].bitmap, NULL, to, &posb);
- ++image;
- if(dh->ourImages[i+1].groupNumber!=phase) //back to appropriate frame
- {
- image = 0;
- }
- break;
- }
- }
- }
- CBattleHero::CBattleHero(std::string defName, int phaseG, int imageG, bool flipG, unsigned char player): phase(phaseG), image(imageG), flip(flipG), flagAnim(0)
- {
- dh = CGI->spriteh->giveDef( defName );
- for(int i=0; i<dh->ourImages.size(); ++i) //transforming images
- {
- if(flip)
- dh->ourImages[i].bitmap = CSDL_Ext::rotate01(dh->ourImages[i].bitmap);
- dh->ourImages[i].bitmap = CSDL_Ext::alphaTransform(dh->ourImages[i].bitmap);
- }
- dh->alphaTransformed = true;
- if(flip)
- flag = CGI->spriteh->giveDef("CMFLAGR.DEF");
- else
- flag = CGI->spriteh->giveDef("CMFLAGL.DEF");
- //coloring flag and adding transparency
- for(int i=0; i<flag->ourImages.size(); ++i)
- {
- flag->ourImages[i].bitmap = CSDL_Ext::alphaTransform(flag->ourImages[i].bitmap);
- CSDL_Ext::blueToPlayersAdv(flag->ourImages[i].bitmap, player);
- }
- }
- CBattleHero::~CBattleHero()
- {
- delete dh;
- delete flag;
- }
- std::pair<int, int> CBattleHex::getXYUnitAnim(int hexNum, bool attacker, CCreature * creature)
- {
- std::pair<int, int> ret = std::make_pair(-500, -500); //returned value
- ret.second = -139 + 42 * (hexNum/17); //counting y
- //counting x
- if(attacker)
- {
- ret.first = -160 + 22 * ( ((hexNum/17) + 1)%2 ) + 44 * (hexNum % 17);
- }
- else
- {
- ret.first = -219 + 22 * ( ((hexNum/17) + 1)%2 ) + 44 * (hexNum % 17);
- }
- //shifting position for double - hex creatures
- if(creature->isDoubleWide())
- {
- if(attacker)
- {
- ret.first -= 42;
- }
- else
- {
- ret.first += 42;
- }
- }
- //returning
- return ret;
- }
- signed char CBattleHex::mutualPosition(int hex1, int hex2)
- {
- if(hex2 == hex1 - ( (hex1/17)%2 ? 18 : 17 )) //top left
- return 0;
- if(hex2 == hex1 - ( (hex1/17)%2 ? 17 : 16 )) //top right
- return 1;
- if(hex2 == hex1 - 1 && hex1%17 != 0) //left
- return 5;
- if(hex2 == hex1 + 1 && hex1%17 != 16) //right
- return 2;
- if(hex2 == hex1 + ( (hex1/17)%2 ? 16 : 17 )) //bottom left
- return 4;
- if(hex2 == hex1 + ( (hex1/17)%2 ? 17 : 18 )) //bottom right
- return 3;
- return -1;
- }
- void CBattleHex::activate()
- {
- Hoverable::activate();
- MotionInterested::activate();
- ClickableL::activate();
- }
- void CBattleHex::deactivate()
- {
- Hoverable::deactivate();
- MotionInterested::deactivate();
- ClickableL::deactivate();
- }
- void CBattleHex::hover(bool on)
- {
- hovered = on;
- Hoverable::hover(on);
- }
- CBattleHex::CBattleHex() : myNumber(-1), accesible(true), hovered(false), strictHovered(false), myInterface(NULL)
- {
- }
- void CBattleHex::mouseMoved(SDL_MouseMotionEvent &sEvent)
- {
- if(CBattleInterface::cellShade)
- {
- if(CSDL_Ext::SDL_GetPixel(CBattleInterface::cellShade, sEvent.x-pos.x, sEvent.y-pos.y) == 0) //hovered pixel is outside hex
- {
- strictHovered = false;
- }
- else //hovered pixel is inside hex
- {
- strictHovered = true;
- }
- }
- }
- void CBattleHex::clickLeft(boost::logic::tribool down)
- {
- if(!down && hovered && strictHovered) //we've been really clicked!
- {
- myInterface->hexLclicked(myNumber);
- }
- }
- CBattleConsole::CBattleConsole() : lastShown(-1)
- {
- }
- CBattleConsole::~CBattleConsole()
- {
- texts.clear();
- }
- void CBattleConsole::show(SDL_Surface * to)
- {
- if(texts.size())
- {
- if(texts.size()==1)
- {
- CSDL_Ext::printAtMiddleWB(texts[0], pos.x + pos.w/2, pos.y + 10, GEOR13, 80, zwykly, to);
- }
- else
- {
- CSDL_Ext::printAtMiddleWB(texts[lastShown-1], pos.x + pos.w/2, pos.y + 10, GEOR13, 80, zwykly, to);
- CSDL_Ext::printAtMiddleWB(texts[lastShown], pos.x + pos.w/2, pos.y + 26, GEOR13, 80, zwykly, to);
- }
- }
- }
- bool CBattleConsole::addText(std::string text)
- {
- if(text.size()>70)
- return false; //text too long!
- texts.push_back(text);
- lastShown++;
- return true;
- }
- void CBattleConsole::eraseText(unsigned int pos)
- {
- if(pos < texts.size())
- {
- texts.erase(texts.begin() + pos);
- if(lastShown == texts.size())
- --lastShown;
- }
- }
- void CBattleConsole::changeTextAt(std::string text, unsigned int pos)
- {
- if(pos >= texts.size()) //no such pos
- return;
- texts[pos] = text;
- }
- void CBattleConsole::scrollUp(unsigned int by)
- {
- if(lastShown > by)
- lastShown -= by;
- }
- void CBattleConsole::scrollDown(unsigned int by)
- {
- if(lastShown + by < texts.size())
- lastShown += by;
- }
|