CGameHandler.cpp 178 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068
  1. #include "StdInc.h"
  2. #include "../lib/filesystem/Filesystem.h"
  3. #include "../lib/filesystem/CFileInfo.h"
  4. #include "../lib/int3.h"
  5. #include "../lib/mapping/CCampaignHandler.h"
  6. #include "../lib/StartInfo.h"
  7. #include "../lib/CModHandler.h"
  8. #include "../lib/CArtHandler.h"
  9. #include "../lib/CBuildingHandler.h"
  10. #include "../lib/CHeroHandler.h"
  11. #include "../lib/spells/CSpellHandler.h"
  12. #include "../lib/spells/ISpellMechanics.h"
  13. #include "../lib/CGeneralTextHandler.h"
  14. #include "../lib/CTownHandler.h"
  15. #include "../lib/CCreatureHandler.h"
  16. #include "../lib/CGameState.h"
  17. #include "../lib/BattleState.h"
  18. #include "../lib/CondSh.h"
  19. #include "../lib/NetPacks.h"
  20. #include "../lib/VCMI_Lib.h"
  21. #include "../lib/mapping/CMap.h"
  22. #include "../lib/VCMIDirs.h"
  23. #include "../lib/ScopeGuard.h"
  24. #include "../lib/CSoundBase.h"
  25. #include "CGameHandler.h"
  26. #include "CVCMIServer.h"
  27. #include "../lib/CCreatureSet.h"
  28. #include "../lib/CThreadHelper.h"
  29. #include "../lib/GameConstants.h"
  30. #include "../lib/registerTypes/RegisterTypes.h"
  31. /*
  32. * CGameHandler.cpp, part of VCMI engine
  33. *
  34. * Authors: listed in file AUTHORS in main folder
  35. *
  36. * License: GNU General Public License v2.0 or later
  37. * Full text of license available in license.txt file, in main folder
  38. *
  39. */
  40. #ifndef _MSC_VER
  41. #include <boost/thread/xtime.hpp>
  42. #endif
  43. extern bool end2;
  44. #ifdef min
  45. #undef min
  46. #endif
  47. #ifdef max
  48. #undef max
  49. #endif
  50. #define COMPLAIN_RET_IF(cond, txt) do {if(cond){complain(txt); return;}} while(0)
  51. #define COMPLAIN_RET_FALSE_IF(cond, txt) do {if(cond){complain(txt); return false;}} while(0)
  52. #define COMPLAIN_RET(txt) {complain(txt); return false;}
  53. #define COMPLAIN_RETF(txt, FORMAT) {complain(boost::str(boost::format(txt) % FORMAT)); return false;}
  54. #define NEW_ROUND BattleNextRound bnr;\
  55. bnr.round = gs->curB->round + 1;\
  56. sendAndApply(&bnr);
  57. class ServerSpellCastEnvironment: public SpellCastEnvironment
  58. {
  59. public:
  60. ServerSpellCastEnvironment(CGameHandler * gh);
  61. ~ServerSpellCastEnvironment(){};
  62. void sendAndApply(CPackForClient * info) const override;
  63. CRandomGenerator & getRandomGenerator() const override;
  64. void complain(const std::string & problem) const override;
  65. const CMap * getMap() const override;
  66. const CGameInfoCallback * getCb() const override;
  67. bool moveHero(ObjectInstanceID hid, int3 dst, ui8 teleporting, PlayerColor asker = PlayerColor::NEUTRAL) const override;
  68. private:
  69. mutable CGameHandler * gh;
  70. };
  71. CondSh<bool> battleMadeAction;
  72. CondSh<BattleResult *> battleResult(nullptr);
  73. template <typename T> class CApplyOnGH;
  74. class CBaseForGHApply
  75. {
  76. public:
  77. virtual bool applyOnGH(CGameHandler *gh, CConnection *c, void *pack, PlayerColor player) const =0;
  78. virtual ~CBaseForGHApply(){}
  79. template<typename U> static CBaseForGHApply *getApplier(const U * t=nullptr)
  80. {
  81. return new CApplyOnGH<U>;
  82. }
  83. };
  84. template <typename T> class CApplyOnGH : public CBaseForGHApply
  85. {
  86. public:
  87. bool applyOnGH(CGameHandler *gh, CConnection *c, void *pack, PlayerColor player) const
  88. {
  89. T *ptr = static_cast<T*>(pack);
  90. ptr->c = c;
  91. ptr->player = player;
  92. return ptr->applyGh(gh);
  93. }
  94. };
  95. template <>
  96. class CApplyOnGH<CPack> : public CBaseForGHApply
  97. {
  98. public:
  99. bool applyOnGH(CGameHandler *gh, CConnection *c, void *pack, PlayerColor player) const
  100. {
  101. logGlobal->errorStream() << "Cannot apply on GH plain CPack!";
  102. assert(0);
  103. return false;
  104. }
  105. };
  106. static CApplier<CBaseForGHApply> *applier = nullptr;
  107. CMP_stack cmpst ;
  108. static inline double distance(int3 a, int3 b)
  109. {
  110. return std::sqrt( (double)(a.x-b.x)*(a.x-b.x) + (a.y-b.y)*(a.y-b.y) );
  111. }
  112. static void giveExp(BattleResult &r)
  113. {
  114. if(r.winner > 1)
  115. {
  116. // draw
  117. return;
  118. }
  119. r.exp[0] = 0;
  120. r.exp[1] = 0;
  121. for(auto i = r.casualties[!r.winner].begin(); i!=r.casualties[!r.winner].end(); i++)
  122. {
  123. r.exp[r.winner] += VLC->creh->creatures.at(i->first)->valOfBonuses(Bonus::STACK_HEALTH) * i->second;
  124. }
  125. }
  126. PlayerStatus PlayerStatuses::operator[](PlayerColor player)
  127. {
  128. boost::unique_lock<boost::mutex> l(mx);
  129. if(players.find(player) != players.end())
  130. {
  131. return players.at(player);
  132. }
  133. else
  134. {
  135. throw std::runtime_error("No such player!");
  136. }
  137. }
  138. void PlayerStatuses::addPlayer(PlayerColor player)
  139. {
  140. boost::unique_lock<boost::mutex> l(mx);
  141. players[player];
  142. }
  143. bool PlayerStatuses::checkFlag(PlayerColor player, bool PlayerStatus::*flag)
  144. {
  145. boost::unique_lock<boost::mutex> l(mx);
  146. if(players.find(player) != players.end())
  147. {
  148. return players[player].*flag;
  149. }
  150. else
  151. {
  152. throw std::runtime_error("No such player!");
  153. }
  154. }
  155. void PlayerStatuses::setFlag(PlayerColor player, bool PlayerStatus::*flag, bool val)
  156. {
  157. boost::unique_lock<boost::mutex> l(mx);
  158. if(players.find(player) != players.end())
  159. {
  160. players[player].*flag = val;
  161. }
  162. else
  163. {
  164. throw std::runtime_error("No such player!");
  165. }
  166. cv.notify_all();
  167. }
  168. template <typename T>
  169. void callWith(std::vector<T> args, std::function<void(T)> fun, ui32 which)
  170. {
  171. fun(args[which]);
  172. }
  173. void CGameHandler::levelUpHero(const CGHeroInstance * hero, SecondarySkill skill)
  174. {
  175. changeSecSkill(hero, skill, 1, 0);
  176. expGiven(hero);
  177. }
  178. void CGameHandler::levelUpHero(const CGHeroInstance * hero)
  179. {
  180. // required exp for at least 1 lvl-up hasn't been reached
  181. if(!hero->gainsLevel())
  182. {
  183. return;
  184. }
  185. // give primary skill
  186. logGlobal->traceStream() << hero->name << " got level "<< hero->level;
  187. auto primarySkill = hero->nextPrimarySkill();
  188. SetPrimSkill sps;
  189. sps.id = hero->id;
  190. sps.which = primarySkill;
  191. sps.abs = false;
  192. sps.val = 1;
  193. sendAndApply(&sps);
  194. HeroLevelUp hlu;
  195. hlu.hero = hero;
  196. hlu.primskill = primarySkill;
  197. hlu.skills = hero->getLevelUpProposedSecondarySkills();
  198. if(hlu.skills.size() == 0)
  199. {
  200. sendAndApply(&hlu);
  201. levelUpHero(hero);
  202. }
  203. else if(hlu.skills.size() == 1 || hero->tempOwner == PlayerColor::NEUTRAL) //choose skill automatically
  204. {
  205. sendAndApply(&hlu);
  206. levelUpHero(hero, *RandomGeneratorUtil::nextItem(hlu.skills, hero->skillsInfo.rand));
  207. }
  208. else if(hlu.skills.size() > 1)
  209. {
  210. auto levelUpQuery = std::make_shared<CHeroLevelUpDialogQuery>(hlu);
  211. hlu.queryID = levelUpQuery->queryID;
  212. queries.addQuery(levelUpQuery);
  213. sendAndApply(&hlu);
  214. //level up will be called on query reply
  215. }
  216. }
  217. void CGameHandler::levelUpCommander (const CCommanderInstance * c, int skill)
  218. {
  219. SetCommanderProperty scp;
  220. auto hero = dynamic_cast<const CGHeroInstance *>(c->armyObj);
  221. if (hero)
  222. scp.heroid = hero->id;
  223. else
  224. {
  225. complain ("Commander is not led by hero!");
  226. return;
  227. }
  228. scp.accumulatedBonus.subtype = 0;
  229. scp.accumulatedBonus.additionalInfo = 0;
  230. scp.accumulatedBonus.duration = Bonus::PERMANENT;
  231. scp.accumulatedBonus.turnsRemain = 0;
  232. scp.accumulatedBonus.source = Bonus::COMMANDER;
  233. scp.accumulatedBonus.valType = Bonus::BASE_NUMBER;
  234. if (skill <= ECommander::SPELL_POWER)
  235. {
  236. scp.which = SetCommanderProperty::BONUS;
  237. auto difference = [](std::vector< std::vector <ui8> > skillLevels, std::vector <ui8> secondarySkills, int skill)->int
  238. {
  239. int s = std::min (skill, (int)ECommander::SPELL_POWER); //spell power level controls also casts and resistance
  240. return skillLevels.at(skill).at(secondarySkills.at(s)) - (secondarySkills.at(s) ? skillLevels.at(skill).at(secondarySkills.at(s)-1) : 0);
  241. };
  242. switch (skill)
  243. {
  244. case ECommander::ATTACK:
  245. scp.accumulatedBonus.type = Bonus::PRIMARY_SKILL;
  246. scp.accumulatedBonus.subtype = PrimarySkill::ATTACK;
  247. break;
  248. case ECommander::DEFENSE:
  249. scp.accumulatedBonus.type = Bonus::PRIMARY_SKILL;
  250. scp.accumulatedBonus.subtype = PrimarySkill::DEFENSE;
  251. break;
  252. case ECommander::HEALTH:
  253. scp.accumulatedBonus.type = Bonus::STACK_HEALTH;
  254. scp.accumulatedBonus.valType = Bonus::PERCENT_TO_BASE;
  255. break;
  256. case ECommander::DAMAGE:
  257. scp.accumulatedBonus.type = Bonus::CREATURE_DAMAGE;
  258. scp.accumulatedBonus.subtype = 0;
  259. scp.accumulatedBonus.valType = Bonus::PERCENT_TO_BASE;
  260. break;
  261. case ECommander::SPEED:
  262. scp.accumulatedBonus.type = Bonus::STACKS_SPEED;
  263. break;
  264. case ECommander::SPELL_POWER:
  265. scp.accumulatedBonus.type = Bonus::MAGIC_RESISTANCE;
  266. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, ECommander::RESISTANCE);
  267. sendAndApply (&scp); //additional pack
  268. scp.accumulatedBonus.type = Bonus::CREATURE_SPELL_POWER;
  269. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, ECommander::SPELL_POWER) * 100; //like hero with spellpower = ability level
  270. sendAndApply (&scp); //additional pack
  271. scp.accumulatedBonus.type = Bonus::CASTS;
  272. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, ECommander::CASTS);
  273. sendAndApply (&scp); //additional pack
  274. scp.accumulatedBonus.type = Bonus::CREATURE_ENCHANT_POWER; //send normally
  275. break;
  276. }
  277. scp.accumulatedBonus.val = difference (VLC->creh->skillLevels, c->secondarySkills, skill);
  278. sendAndApply (&scp);
  279. scp.which = SetCommanderProperty::SECONDARY_SKILL;
  280. scp.additionalInfo = skill;
  281. scp.amount = c->secondarySkills.at(skill) + 1;
  282. sendAndApply (&scp);
  283. }
  284. else if (skill >= 100)
  285. {
  286. scp.which = SetCommanderProperty::SPECIAL_SKILL;
  287. scp.accumulatedBonus = *VLC->creh->skillRequirements.at(skill-100).first;
  288. scp.additionalInfo = skill; //unnormalized
  289. sendAndApply (&scp);
  290. }
  291. expGiven(hero);
  292. }
  293. void CGameHandler::levelUpCommander(const CCommanderInstance * c)
  294. {
  295. if (!c->gainsLevel())
  296. {
  297. return;
  298. }
  299. CommanderLevelUp clu;
  300. auto hero = dynamic_cast<const CGHeroInstance *>(c->armyObj);
  301. if (hero)
  302. clu.hero = hero;
  303. else
  304. {
  305. complain ("Commander is not led by hero!");
  306. return;
  307. }
  308. //picking sec. skills for choice
  309. for (int i = 0; i <= ECommander::SPELL_POWER; ++i)
  310. {
  311. if (c->secondarySkills.at(i) < ECommander::MAX_SKILL_LEVEL)
  312. clu.skills.push_back(i);
  313. }
  314. int i = 100;
  315. for (auto specialSkill : VLC->creh->skillRequirements)
  316. {
  317. if (c->secondarySkills.at(specialSkill.second.first) == ECommander::MAX_SKILL_LEVEL
  318. && c->secondarySkills.at(specialSkill.second.second) == ECommander::MAX_SKILL_LEVEL
  319. && !vstd::contains (c->specialSKills, i))
  320. clu.skills.push_back (i);
  321. ++i;
  322. }
  323. int skillAmount = clu.skills.size();
  324. if(!skillAmount)
  325. {
  326. sendAndApply(&clu);
  327. levelUpCommander(c);
  328. }
  329. else if(skillAmount == 1 || hero->tempOwner == PlayerColor::NEUTRAL) //choose skill automatically
  330. {
  331. sendAndApply(&clu);
  332. levelUpCommander(c, *RandomGeneratorUtil::nextItem(clu.skills, gs->getRandomGenerator()));
  333. }
  334. else if(skillAmount > 1) //apply and ask for secondary skill
  335. {
  336. auto commanderLevelUp = std::make_shared<CCommanderLevelUpDialogQuery>(clu);
  337. clu.queryID = commanderLevelUp->queryID;
  338. queries.addQuery(commanderLevelUp);
  339. sendAndApply(&clu);
  340. }
  341. }
  342. void CGameHandler::expGiven(const CGHeroInstance *hero)
  343. {
  344. if(hero->gainsLevel())
  345. levelUpHero(hero);
  346. else if(hero->commander && hero->commander->gainsLevel())
  347. levelUpCommander(hero->commander);
  348. //if(hero->commander && hero->level > hero->commander->level && hero->commander->gainsLevel())
  349. // levelUpCommander(hero->commander);
  350. // else
  351. // levelUpHero(hero);
  352. }
  353. void CGameHandler::changePrimSkill(const CGHeroInstance * hero, PrimarySkill::PrimarySkill which, si64 val, bool abs)
  354. {
  355. if (which == PrimarySkill::EXPERIENCE) // Check if scenario limit reached
  356. {
  357. if (gs->map->levelLimit != 0)
  358. {
  359. TExpType expLimit = VLC->heroh->reqExp(gs->map->levelLimit);
  360. TExpType resultingExp = abs ? val : hero->exp + val;
  361. if (resultingExp > expLimit)
  362. {
  363. // set given experience to max possible, but don't decrease if hero already over top
  364. abs = true;
  365. val = std::max(expLimit, hero->exp);
  366. InfoWindow iw;
  367. iw.player = hero->tempOwner;
  368. iw.text.addTxt(MetaString::GENERAL_TXT, 1); //can gain no more XP
  369. iw.text.addReplacement(hero->name);
  370. sendAndApply(&iw);
  371. }
  372. }
  373. }
  374. SetPrimSkill sps;
  375. sps.id = hero->id;
  376. sps.which = which;
  377. sps.abs = abs;
  378. sps.val = val;
  379. sendAndApply(&sps);
  380. //only for exp - hero may level up
  381. if (which == PrimarySkill::EXPERIENCE)
  382. {
  383. if(hero->commander && hero->commander->alive)
  384. {
  385. //FIXME: trim experience according to map limit?
  386. SetCommanderProperty scp;
  387. scp.heroid = hero->id;
  388. scp.which = SetCommanderProperty::EXPERIENCE;
  389. scp.amount = val;
  390. sendAndApply (&scp);
  391. CBonusSystemNode::treeHasChanged();
  392. }
  393. expGiven(hero);
  394. }
  395. }
  396. void CGameHandler::changeSecSkill( const CGHeroInstance * hero, SecondarySkill which, int val, bool abs/*=false*/ )
  397. {
  398. SetSecSkill sss;
  399. sss.id = hero->id;
  400. sss.which = which;
  401. sss.val = val;
  402. sss.abs = abs;
  403. sendAndApply(&sss);
  404. if(which == SecondarySkill::WISDOM)
  405. {
  406. if(hero && hero->visitedTown)
  407. giveSpells(hero->visitedTown, hero);
  408. }
  409. }
  410. void CGameHandler::endBattle(int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2)
  411. {
  412. LOG_TRACE(logGlobal);
  413. //Fill BattleResult structure with exp info
  414. giveExp(*battleResult.data);
  415. if (battleResult.get()->result == BattleResult::NORMAL) // give 500 exp for defeating hero, unless he escaped
  416. {
  417. if (hero1)
  418. battleResult.data->exp[1] += 500;
  419. if (hero2)
  420. battleResult.data->exp[0] += 500;
  421. }
  422. if (hero1)
  423. battleResult.data->exp[0] = hero1->calculateXp(battleResult.data->exp[0]);//scholar skill
  424. if (hero2)
  425. battleResult.data->exp[1] = hero2->calculateXp(battleResult.data->exp[1]);
  426. const CArmedInstance *bEndArmy1 = gs->curB->sides.at(0).armyObject;
  427. const CArmedInstance *bEndArmy2 = gs->curB->sides.at(1).armyObject;
  428. const BattleResult::EResult result = battleResult.get()->result;
  429. auto findBattleQuery = [this]() -> std::shared_ptr<CBattleQuery>
  430. {
  431. for(auto &q : queries.allQueries())
  432. {
  433. if(auto bq = std::dynamic_pointer_cast<CBattleQuery>(q))
  434. if(bq->bi == gs->curB)
  435. return bq;
  436. }
  437. return std::shared_ptr<CBattleQuery>();
  438. };
  439. auto battleQuery = findBattleQuery();
  440. if(!battleQuery)
  441. {
  442. logGlobal->errorStream() << "Cannot find battle query!";
  443. if(gs->initialOpts->mode == StartInfo::DUEL)
  444. {
  445. battleQuery = std::make_shared<CBattleQuery>(gs->curB);
  446. }
  447. }
  448. if(battleQuery != queries.topQuery(gs->curB->sides[0].color))
  449. complain("Player " + boost::lexical_cast<std::string>(gs->curB->sides[0].color) + " although in battle has no battle query at the top!");
  450. battleQuery->result = *battleResult.data;
  451. //Check how many battle queries were created (number of players blocked by battle)
  452. const int queriedPlayers = battleQuery ? boost::count(queries.allQueries(), battleQuery) : 0;
  453. finishingBattle = make_unique<FinishingBattleHelper>(battleQuery, gs->initialOpts->mode == StartInfo::DUEL, queriedPlayers);
  454. CasualtiesAfterBattle cab1(bEndArmy1, gs->curB), cab2(bEndArmy2, gs->curB); //calculate casualties before deleting battle
  455. if(finishingBattle->duel)
  456. {
  457. duelFinished();
  458. sendAndApply(battleResult.data); //after this point casualties objects are destroyed
  459. return;
  460. }
  461. ChangeSpells cs; //for Eagle Eye
  462. if(finishingBattle->winnerHero)
  463. {
  464. if(int eagleEyeLevel = finishingBattle->winnerHero->getSecSkillLevel(SecondarySkill::EAGLE_EYE))
  465. {
  466. int maxLevel = eagleEyeLevel + 1;
  467. double eagleEyeChance = finishingBattle->winnerHero->valOfBonuses(Bonus::SECONDARY_SKILL_PREMY, SecondarySkill::EAGLE_EYE);
  468. for(const CSpell *sp : gs->curB->sides.at(!battleResult.data->winner).usedSpellsHistory)
  469. if(sp->level <= maxLevel && !vstd::contains(finishingBattle->winnerHero->spells, sp->id) && gs->getRandomGenerator().nextInt(99) < eagleEyeChance)
  470. cs.spells.insert(sp->id);
  471. }
  472. }
  473. std::vector<const CArtifactInstance *> arts; //display them in window
  474. if(result == BattleResult::NORMAL && finishingBattle->winnerHero)
  475. {
  476. auto sendMoveArtifact = [&](const CArtifactInstance *art, MoveArtifact *ma)
  477. {
  478. arts.push_back(art);
  479. ma->dst = ArtifactLocation(finishingBattle->winnerHero, art->firstAvailableSlot(finishingBattle->winnerHero));
  480. sendAndApply(ma);
  481. };
  482. if(finishingBattle->loserHero)
  483. {
  484. //TODO: wrap it into a function, somehow (boost::variant -_-)
  485. auto artifactsWorn = finishingBattle->loserHero->artifactsWorn;
  486. for (auto artSlot : artifactsWorn)
  487. {
  488. MoveArtifact ma;
  489. ma.src = ArtifactLocation(finishingBattle->loserHero, artSlot.first);
  490. const CArtifactInstance * art = ma.src.getArt();
  491. if(art && !art->artType->isBig() &&
  492. art->artType->id != ArtifactID::SPELLBOOK)
  493. // don't move war machines or locked arts (spellbook)
  494. {
  495. sendMoveArtifact(art, &ma);
  496. }
  497. }
  498. while(!finishingBattle->loserHero->artifactsInBackpack.empty())
  499. {
  500. //we assume that no big artifacts can be found
  501. MoveArtifact ma;
  502. ma.src = ArtifactLocation(finishingBattle->loserHero,
  503. ArtifactPosition(GameConstants::BACKPACK_START)); //backpack automatically shifts arts to beginning
  504. const CArtifactInstance * art = ma.src.getArt();
  505. if(art->artType->id != ArtifactID::GRAIL) //grail may not be won
  506. {
  507. sendMoveArtifact(art, &ma);
  508. }
  509. }
  510. if(finishingBattle->loserHero->commander) //TODO: what if commanders belong to no hero?
  511. {
  512. artifactsWorn = finishingBattle->loserHero->commander->artifactsWorn;
  513. for(auto artSlot : artifactsWorn)
  514. {
  515. MoveArtifact ma;
  516. ma.src = ArtifactLocation(finishingBattle->loserHero->commander.get(), artSlot.first);
  517. const CArtifactInstance * art = ma.src.getArt();
  518. if (art && !art->artType->isBig())
  519. {
  520. sendMoveArtifact(art, &ma);
  521. }
  522. }
  523. }
  524. }
  525. for(auto armySlot : gs->curB->battleGetArmyObject(!battleResult.data->winner)->stacks)
  526. {
  527. auto artifactsWorn = armySlot.second->artifactsWorn;
  528. for (auto artSlot : artifactsWorn)
  529. {
  530. MoveArtifact ma;
  531. ma.src = ArtifactLocation(armySlot.second, artSlot.first);
  532. const CArtifactInstance * art = ma.src.getArt();
  533. if (art && !art->artType->isBig())
  534. {
  535. sendMoveArtifact(art, &ma);
  536. }
  537. }
  538. }
  539. }
  540. sendAndApply(battleResult.data); //after this point casualties objects are destroyed
  541. if(arts.size()) //display loot
  542. {
  543. InfoWindow iw;
  544. iw.player = finishingBattle->winnerHero->tempOwner;
  545. iw.text.addTxt (MetaString::GENERAL_TXT, 30); //You have captured enemy artifact
  546. for(auto art : arts) //TODO; separate function to display loot for various ojects?
  547. {
  548. iw.components.push_back(Component(
  549. Component::ARTIFACT, art->artType->id,
  550. art->artType->id == ArtifactID::SPELL_SCROLL? art->getGivenSpellID() : 0, 0));
  551. if(iw.components.size() >= 14)
  552. {
  553. sendAndApply(&iw);
  554. iw.components.clear();
  555. }
  556. }
  557. if(iw.components.size())
  558. {
  559. sendAndApply(&iw);
  560. }
  561. }
  562. //Eagle Eye secondary skill handling
  563. if(!cs.spells.empty())
  564. {
  565. cs.learn = 1;
  566. cs.hid = finishingBattle->winnerHero->id;
  567. InfoWindow iw;
  568. iw.player = finishingBattle->winnerHero->tempOwner;
  569. iw.text.addTxt(MetaString::GENERAL_TXT, 221); //Through eagle-eyed observation, %s is able to learn %s
  570. iw.text.addReplacement(finishingBattle->winnerHero->name);
  571. std::ostringstream names;
  572. for(int i = 0; i < cs.spells.size(); i++)
  573. {
  574. names << "%s";
  575. if(i < cs.spells.size() - 2)
  576. names << ", ";
  577. else if(i < cs.spells.size() - 1)
  578. names << "%s";
  579. }
  580. names << ".";
  581. iw.text.addReplacement(names.str());
  582. auto it = cs.spells.begin();
  583. for(int i = 0; i < cs.spells.size(); i++, it++)
  584. {
  585. iw.text.addReplacement(MetaString::SPELL_NAME, it->toEnum());
  586. if(i == cs.spells.size() - 2) //we just added pre-last name
  587. iw.text.addReplacement(MetaString::GENERAL_TXT, 141); // " and "
  588. iw.components.push_back(Component(Component::SPELL, *it, 0, 0));
  589. }
  590. sendAndApply(&iw);
  591. sendAndApply(&cs);
  592. }
  593. cab1.updateArmy(this);
  594. cab2.updateArmy(this); //take casualties after battle is deleted
  595. //if one hero has lost we will erase him
  596. if(battleResult.data->winner!=0 && hero1)
  597. {
  598. RemoveObject ro(hero1->id);
  599. sendAndApply(&ro);
  600. }
  601. if(battleResult.data->winner!=1 && hero2)
  602. {
  603. RemoveObject ro(hero2->id);
  604. sendAndApply(&ro);
  605. }
  606. //give exp
  607. if (battleResult.data->exp[0] && hero1 && battleResult.get()->winner == 0)
  608. changePrimSkill(hero1, PrimarySkill::EXPERIENCE, battleResult.data->exp[0]);
  609. else if (battleResult.data->exp[1] && hero2 && battleResult.get()->winner == 1)
  610. changePrimSkill(hero2, PrimarySkill::EXPERIENCE, battleResult.data->exp[1]);
  611. queries.popIfTop(battleQuery);
  612. //--> continuation (battleAfterLevelUp) occurs after level-up queries are handled or on removing query (above)
  613. }
  614. void CGameHandler::battleAfterLevelUp( const BattleResult &result )
  615. {
  616. LOG_TRACE(logGlobal);
  617. finishingBattle->remainingBattleQueriesCount--;
  618. logGlobal->traceStream() << "Decremented queries count to " << finishingBattle->remainingBattleQueriesCount;
  619. if(finishingBattle->remainingBattleQueriesCount > 0)
  620. //Battle results will be handled when all battle queries are closed
  621. return;
  622. //TODO consider if we really want it to work like above. ATM each player as unblocked as soon as possible
  623. // but the battle consequences are applied after final player is unblocked. Hard to abuse...
  624. // Still, it looks like a hole.
  625. // Necromancy if applicable.
  626. const CStackBasicDescriptor raisedStack = finishingBattle->winnerHero ? finishingBattle->winnerHero->calculateNecromancy(*battleResult.data) : CStackBasicDescriptor();
  627. // Give raised units to winner and show dialog, if any were raised,
  628. // units will be given after casualties are taken
  629. const SlotID necroSlot = raisedStack.type ? finishingBattle->winnerHero->getSlotFor(raisedStack.type) : SlotID();
  630. if (necroSlot != SlotID())
  631. {
  632. finishingBattle->winnerHero->showNecromancyDialog(raisedStack);
  633. addToSlot(StackLocation(finishingBattle->winnerHero, necroSlot), raisedStack.type, raisedStack.count);
  634. }
  635. BattleResultsApplied resultsApplied;
  636. resultsApplied.player1 = finishingBattle->victor;
  637. resultsApplied.player2 = finishingBattle->loser;
  638. sendAndApply(&resultsApplied);
  639. setBattle(nullptr);
  640. if(visitObjectAfterVictory && result.winner==0 && !finishingBattle->winnerHero->stacks.empty())
  641. {
  642. logGlobal->traceStream() << "post-victory visit";
  643. visitObjectOnTile(*getTile(finishingBattle->winnerHero->getPosition()), finishingBattle->winnerHero);
  644. }
  645. visitObjectAfterVictory = false;
  646. //handle victory/loss of engaged players
  647. std::set<PlayerColor> playerColors = {finishingBattle->loser, finishingBattle->victor};
  648. checkVictoryLossConditions(playerColors);
  649. if(result.result == BattleResult::SURRENDER || result.result == BattleResult::ESCAPE) //loser has escaped or surrendered
  650. {
  651. SetAvailableHeroes sah;
  652. sah.player = finishingBattle->loser;
  653. sah.hid[0] = finishingBattle->loserHero->subID;
  654. if(result.result == BattleResult::ESCAPE) //retreat
  655. {
  656. sah.army[0].clear();
  657. sah.army[0].setCreature(SlotID(0), finishingBattle->loserHero->type->initialArmy.at(0).creature, 1);
  658. }
  659. if(const CGHeroInstance *another = getPlayer(finishingBattle->loser)->availableHeroes.at(0))
  660. sah.hid[1] = another->subID;
  661. else
  662. sah.hid[1] = -1;
  663. sendAndApply(&sah);
  664. }
  665. if(result.winner != 2 && finishingBattle->winnerHero && finishingBattle->winnerHero->stacks.empty())
  666. {
  667. RemoveObject ro(finishingBattle->winnerHero->id);
  668. sendAndApply(&ro);
  669. if (VLC->modh->settings.WINNING_HERO_WITH_NO_TROOPS_RETREATS)
  670. {
  671. SetAvailableHeroes sah;
  672. sah.player = finishingBattle->victor;
  673. sah.hid[0] = finishingBattle->winnerHero->subID;
  674. sah.army[0].clear();
  675. sah.army[0].setCreature(SlotID(0), finishingBattle->winnerHero->type->initialArmy.at(0).creature, 1);
  676. if(const CGHeroInstance *another = getPlayer(finishingBattle->victor)->availableHeroes.at(0))
  677. sah.hid[1] = another->subID;
  678. else
  679. sah.hid[1] = -1;
  680. sendAndApply(&sah);
  681. }
  682. }
  683. }
  684. void CGameHandler::prepareAttack(BattleAttack &bat, const CStack *att, const CStack *def, int distance, int targetHex)
  685. {
  686. bat.bsa.clear();
  687. bat.stackAttacking = att->ID;
  688. const int attackerLuck = att->LuckVal();
  689. auto sideHeroBlocksLuck = [](const SideInBattle &side){ return NBonus::hasOfType(side.hero, Bonus::BLOCK_LUCK); };
  690. if(!vstd::contains_if(gs->curB->sides, sideHeroBlocksLuck))
  691. {
  692. if(attackerLuck > 0 && gs->getRandomGenerator().nextInt(23) < attackerLuck)
  693. {
  694. bat.flags |= BattleAttack::LUCKY;
  695. }
  696. if (VLC->modh->settings.data["hardcodedFeatures"]["NEGATIVE_LUCK"].Bool()) // negative luck enabled
  697. {
  698. if (attackerLuck < 0 && gs->getRandomGenerator().nextInt(23) < abs(attackerLuck))
  699. {
  700. bat.flags |= BattleAttack::UNLUCKY;
  701. }
  702. }
  703. }
  704. if(gs->getRandomGenerator().nextInt(99) < att->valOfBonuses(Bonus::DOUBLE_DAMAGE_CHANCE))
  705. {
  706. bat.flags |= BattleAttack::DEATH_BLOW;
  707. }
  708. if(att->getCreature()->idNumber == CreatureID::BALLISTA)
  709. {
  710. static const int artilleryLvlToChance[] = {0, 50, 75, 100};
  711. const CGHeroInstance * owner = gs->curB->getHero(att->owner);
  712. int chance = artilleryLvlToChance[owner->getSecSkillLevel(SecondarySkill::ARTILLERY)];
  713. if(chance > gs->getRandomGenerator().nextInt(99))
  714. {
  715. bat.flags |= BattleAttack::BALLISTA_DOUBLE_DMG;
  716. }
  717. }
  718. // only primary target
  719. applyBattleEffects(bat, att, def, distance, false);
  720. if (!bat.shot()) //multiple-hex attack - only in meele
  721. {
  722. std::set<const CStack*> attackedCreatures = gs->curB->getAttackedCreatures(att, targetHex); //creatures other than primary target
  723. for(const CStack * stack : attackedCreatures)
  724. {
  725. if (stack != def) //do not hit same stack twice
  726. {
  727. applyBattleEffects(bat, att, stack, distance, true);
  728. }
  729. }
  730. }
  731. const Bonus * bonus = att->getBonusLocalFirst(Selector::type(Bonus::SPELL_LIKE_ATTACK));
  732. if (bonus && (bat.shot())) //TODO: make it work in melee?
  733. {
  734. //this is need for displaying hit animation
  735. bat.flags |= BattleAttack::SPELL_LIKE;
  736. bat.spellID = SpellID(bonus->subtype);
  737. //TODO: should spell override creature`s projectile?
  738. std::set<const CStack*> attackedCreatures = SpellID(bonus->subtype).toSpell()->getAffectedStacks(gs->curB, ECastingMode::SPELL_LIKE_ATTACK, att->owner, bonus->val, targetHex, att);
  739. //TODO: get exact attacked hex for defender
  740. for(const CStack * stack : attackedCreatures)
  741. {
  742. if (stack != def) //do not hit same stack twice
  743. {
  744. applyBattleEffects(bat, att, stack, distance, true);
  745. }
  746. }
  747. //now add effect info for all attacked stacks
  748. for(BattleStackAttacked & bsa : bat.bsa)
  749. {
  750. if(bsa.attackerID == att->ID) //this is our attack and not f.e. fire shield
  751. {
  752. //this is need for displaying affect animation
  753. bsa.flags |= BattleStackAttacked::SPELL_EFFECT;
  754. bsa.spellID = SpellID(bonus->subtype);
  755. }
  756. }
  757. }
  758. }
  759. void CGameHandler::applyBattleEffects(BattleAttack &bat, const CStack *att, const CStack *def, int distance, bool secondary) //helper function for prepareAttack
  760. {
  761. BattleStackAttacked bsa;
  762. if (secondary)
  763. bsa.flags |= BattleStackAttacked::SECONDARY; //all other targets do not suffer from spells & spell-like abilities
  764. bsa.attackerID = att->ID;
  765. bsa.stackAttacked = def->ID;
  766. bsa.damageAmount = gs->curB->calculateDmg(att, def, gs->curB->battleGetOwner(att), gs->curB->battleGetOwner(def),
  767. bat.shot(), distance, bat.lucky(), bat.unlucky(), bat.deathBlow(), bat.ballistaDoubleDmg(), gs->getRandomGenerator());
  768. def->prepareAttacked(bsa, gs->getRandomGenerator()); //calculate casualties
  769. //life drain handling
  770. if (att->hasBonusOfType(Bonus::LIFE_DRAIN) && def->isLiving())
  771. {
  772. StacksHealedOrResurrected shi;
  773. shi.lifeDrain = true;
  774. shi.tentHealing = false;
  775. shi.drainedFrom = def->ID;
  776. StacksHealedOrResurrected::HealInfo hi;
  777. hi.stackID = att->ID;
  778. hi.healedHP = att->calculateHealedHealthPoints(bsa.damageAmount * att->valOfBonuses (Bonus::LIFE_DRAIN) / 100, true);
  779. hi.lowLevelResurrection = false;
  780. shi.healedStacks.push_back(hi);
  781. if (hi.healedHP > 0)
  782. {
  783. bsa.healedStacks.push_back(shi);
  784. }
  785. }
  786. bat.bsa.push_back(bsa); //add this stack to the list of victims after drain life has been calculated
  787. //fire shield handling
  788. if(!bat.shot() && def->hasBonusOfType(Bonus::FIRE_SHIELD) && !att->hasBonusOfType (Bonus::FIRE_IMMUNITY))
  789. {
  790. BattleStackAttacked bsa2;
  791. bsa2.stackAttacked = att->ID; //invert
  792. bsa2.attackerID = def->ID;
  793. bsa2.flags |= BattleStackAttacked::EFFECT; //FIXME: play animation upon efreet and not attacker
  794. bsa2.effect = 11;
  795. bsa2.damageAmount = (bsa.damageAmount * def->valOfBonuses(Bonus::FIRE_SHIELD)) / 100; //TODO: scale with attack/defense
  796. att->prepareAttacked(bsa2, gameState()->getRandomGenerator());
  797. bat.bsa.push_back(bsa2);
  798. }
  799. }
  800. void CGameHandler::handleConnection(std::set<PlayerColor> players, CConnection &c)
  801. {
  802. setThreadName("CGameHandler::handleConnection");
  803. try
  804. {
  805. while(1)//server should never shut connection first //was: while(!end2)
  806. {
  807. CPack *pack = nullptr;
  808. PlayerColor player = PlayerColor::NEUTRAL;
  809. si32 requestID = -999;
  810. int packType = 0;
  811. {
  812. boost::unique_lock<boost::mutex> lock(*c.rmx);
  813. c >> player >> requestID >> pack; //get the package
  814. if(!pack)
  815. {
  816. logGlobal ->errorStream() << boost::format("Received a null package marked as request %d from player %d") % requestID % player;
  817. }
  818. packType = typeList.getTypeID(pack); //get the id of type
  819. logGlobal->traceStream() << boost::format("Received client message (request %d by player %d) of type with ID=%d (%s).\n")
  820. % requestID % player.getNum() % packType % typeid(*pack).name();
  821. }
  822. //prepare struct informing that action was applied
  823. auto sendPackageResponse = [&](bool succesfullyApplied)
  824. {
  825. PackageApplied applied;
  826. applied.player = player;
  827. applied.result = succesfullyApplied;
  828. applied.packType = packType;
  829. applied.requestID = requestID;
  830. boost::unique_lock<boost::mutex> lock(*c.wmx);
  831. c << &applied;
  832. };
  833. CBaseForGHApply *apply = applier->apps[packType]; //and appropriate applier object
  834. if(isBlockedByQueries(pack, player))
  835. {
  836. sendPackageResponse(false);
  837. }
  838. else if(apply)
  839. {
  840. const bool result = apply->applyOnGH(this,&c,pack, player);
  841. if(!result)
  842. {
  843. complain((boost::format("Got false in applying %s... that request must have been fishy!")
  844. % typeid(*pack).name()).str());
  845. }
  846. logGlobal->traceStream() << "Message successfully applied (result=" << result << ")!";
  847. sendPackageResponse(true);
  848. }
  849. else
  850. {
  851. logGlobal->errorStream() << "Message cannot be applied, cannot find applier (unregistered type)!";
  852. sendPackageResponse(false);
  853. }
  854. vstd::clear_pointer(pack);
  855. }
  856. }
  857. catch(boost::system::system_error &e) //for boost errors just log, not crash - probably client shut down connection
  858. {
  859. assert(!c.connected); //make sure that connection has been marked as broken
  860. logGlobal->errorStream() << e.what();
  861. end2 = true;
  862. }
  863. catch(...)
  864. {
  865. end2 = true;
  866. handleException();
  867. throw;
  868. }
  869. logGlobal->errorStream() << "Ended handling connection";
  870. }
  871. int CGameHandler::moveStack(int stack, BattleHex dest)
  872. {
  873. int ret = 0;
  874. const CStack *curStack = gs->curB->battleGetStackByID(stack),
  875. *stackAtEnd = gs->curB->battleGetStackByPos(dest);
  876. assert(curStack);
  877. assert(dest < GameConstants::BFIELD_SIZE);
  878. if (gs->curB->tacticDistance)
  879. {
  880. assert(gs->curB->isInTacticRange(dest));
  881. }
  882. if(curStack->position == dest)
  883. return 0;
  884. //initing necessary tables
  885. auto accessibility = getAccesibility(curStack);
  886. //shifting destination (if we have double wide stack and we can occupy dest but not be exactly there)
  887. if(!stackAtEnd && curStack->doubleWide() && !accessibility.accessible(dest, curStack))
  888. {
  889. if(curStack->attackerOwned)
  890. {
  891. if(accessibility.accessible(dest+1, curStack))
  892. dest += BattleHex::RIGHT;
  893. }
  894. else
  895. {
  896. if(accessibility.accessible(dest-1, curStack))
  897. dest += BattleHex::LEFT;
  898. }
  899. }
  900. if((stackAtEnd && stackAtEnd!=curStack && stackAtEnd->alive()) || !accessibility.accessible(dest, curStack))
  901. {
  902. complain("Given destination is not accessible!");
  903. return 0;
  904. }
  905. std::pair< std::vector<BattleHex>, int > path = gs->curB->getPath(curStack->position, dest, curStack);
  906. ret = path.second;
  907. int creSpeed = gs->curB->tacticDistance ? GameConstants::BFIELD_SIZE : curStack->Speed();
  908. if(curStack->hasBonusOfType(Bonus::FLYING))
  909. {
  910. if(path.second <= creSpeed && path.first.size() > 0)
  911. {
  912. //inform clients about move
  913. BattleStackMoved sm;
  914. sm.stack = curStack->ID;
  915. std::vector<BattleHex> tiles;
  916. tiles.push_back(path.first[0]);
  917. sm.tilesToMove = tiles;
  918. sm.distance = path.second;
  919. sm.teleporting = false;
  920. sendAndApply(&sm);
  921. }
  922. }
  923. else //for non-flying creatures
  924. {
  925. std::shared_ptr<const CObstacleInstance> obstacle, obstacle2; //obstacle that interrupted movement
  926. std::vector<BattleHex> tiles;
  927. const int tilesToMove = std::max((int)(path.first.size() - creSpeed), 0);
  928. int v = path.first.size()-1;
  929. bool stackIsMoving = true;
  930. while(stackIsMoving)
  931. {
  932. if(v<tilesToMove)
  933. {
  934. logGlobal->error("Movement terminated abnormally");
  935. break;
  936. }
  937. for(bool obstacleHit = false; (!obstacleHit) && (v >= tilesToMove); --v)
  938. {
  939. BattleHex hex = path.first[v];
  940. tiles.push_back(hex);
  941. //if we walked onto something, finalize this portion of stack movement check into obstacle
  942. if((obstacle = battleGetObstacleOnPos(hex, false)))
  943. obstacleHit = true;
  944. if(curStack->doubleWide())
  945. {
  946. BattleHex otherHex = curStack->occupiedHex(hex);
  947. //two hex creature hit obstacle by backside
  948. if(otherHex.isValid() && ((obstacle2 = battleGetObstacleOnPos(otherHex, false))))
  949. obstacleHit = true;
  950. }
  951. }
  952. if(tiles.size() > 0)
  953. {
  954. //commit movement
  955. BattleStackMoved sm;
  956. sm.stack = curStack->ID;
  957. sm.distance = path.second;
  958. sm.teleporting = false;
  959. sm.tilesToMove = tiles;
  960. sendAndApply(&sm);
  961. tiles.clear();
  962. }
  963. //we don't handle obstacle at the destination tile -> it's handled separately in the if at the end
  964. if(curStack->position != dest)
  965. {
  966. auto processObstacle = [&](std::shared_ptr<const CObstacleInstance> & obs)
  967. {
  968. if(obs)
  969. {
  970. handleDamageFromObstacle(*obs, curStack);
  971. //if stack die in explosion or interrupted by obstacle, abort movement
  972. if(obs->stopsMovement() || !curStack->alive())
  973. stackIsMoving = false;
  974. obs.reset();
  975. }
  976. };
  977. processObstacle(obstacle);
  978. if(curStack->alive())
  979. processObstacle(obstacle2);
  980. }
  981. else
  982. //movement finished normally: we reached destination
  983. stackIsMoving = false;
  984. }
  985. }
  986. //handling obstacle on the final field (separate, because it affects both flying and walking stacks)
  987. if(curStack->alive())
  988. {
  989. if(auto theLastObstacle = battleGetObstacleOnPos(curStack->position, false))
  990. {
  991. handleDamageFromObstacle(*theLastObstacle, curStack);
  992. }
  993. }
  994. if(curStack->alive() && curStack->doubleWide())
  995. {
  996. BattleHex otherHex = curStack->occupiedHex(curStack->position);
  997. if(otherHex.isValid())
  998. if(auto theLastObstacle = battleGetObstacleOnPos(otherHex, false))
  999. {
  1000. //two hex creature hit obstacle by backside
  1001. handleDamageFromObstacle(*theLastObstacle, curStack);
  1002. }
  1003. }
  1004. return ret;
  1005. }
  1006. CGameHandler::CGameHandler(void)
  1007. {
  1008. QID = 1;
  1009. //gs = nullptr;
  1010. IObjectInterface::cb = this;
  1011. applier = new CApplier<CBaseForGHApply>;
  1012. registerTypesServerPacks(*applier);
  1013. visitObjectAfterVictory = false;
  1014. queries.gh = this;
  1015. spellEnv = new ServerSpellCastEnvironment(this);
  1016. }
  1017. CGameHandler::~CGameHandler(void)
  1018. {
  1019. delete spellEnv;
  1020. delete applier;
  1021. applier = nullptr;
  1022. delete gs;
  1023. }
  1024. void CGameHandler::init(StartInfo *si)
  1025. {
  1026. if(si->seedToBeUsed == 0)
  1027. {
  1028. si->seedToBeUsed = std::time(nullptr);
  1029. }
  1030. gs = new CGameState();
  1031. logGlobal->infoStream() << "Gamestate created!";
  1032. gs->init(si);
  1033. logGlobal->infoStream() << "Gamestate initialized!";
  1034. // reset seed, so that clients can't predict any following random values
  1035. gs->getRandomGenerator().resetSeed();
  1036. for(auto & elem : gs->players)
  1037. {
  1038. states.addPlayer(elem.first);
  1039. }
  1040. }
  1041. static bool evntCmp(const CMapEvent &a, const CMapEvent &b)
  1042. {
  1043. return a.earlierThan(b);
  1044. }
  1045. void CGameHandler::setPortalDwelling(const CGTownInstance * town, bool forced=false, bool clear = false)
  1046. {// bool forced = true - if creature should be replaced, if false - only if no creature was set
  1047. const PlayerState *p = gs->getPlayer(town->tempOwner);
  1048. if(!p)
  1049. {
  1050. logGlobal->warnStream() << "There is no player owner of town " << town->name << " at " << town->pos;
  1051. return;
  1052. }
  1053. if (forced || town->creatures.at(GameConstants::CREATURES_PER_TOWN).second.empty())//we need to change creature
  1054. {
  1055. SetAvailableCreatures ssi;
  1056. ssi.tid = town->id;
  1057. ssi.creatures = town->creatures;
  1058. ssi.creatures[GameConstants::CREATURES_PER_TOWN].second.clear();//remove old one
  1059. const std::vector<ConstTransitivePtr<CGDwelling> > &dwellings = p->dwellings;
  1060. if (dwellings.empty())//no dwellings - just remove
  1061. {
  1062. sendAndApply(&ssi);
  1063. return;
  1064. }
  1065. auto dwelling = *RandomGeneratorUtil::nextItem(dwellings, gs->getRandomGenerator());
  1066. // for multi-creature dwellings like Golem Factory
  1067. auto creatureId = RandomGeneratorUtil::nextItem(dwelling->creatures, gs->getRandomGenerator())->second[0];
  1068. if(clear)
  1069. {
  1070. ssi.creatures[GameConstants::CREATURES_PER_TOWN].first = std::max((ui32)1, (VLC->creh->creatures.at(creatureId)->growth)/2);
  1071. }
  1072. else
  1073. {
  1074. ssi.creatures[GameConstants::CREATURES_PER_TOWN].first = VLC->creh->creatures.at(creatureId)->growth;
  1075. }
  1076. ssi.creatures[GameConstants::CREATURES_PER_TOWN].second.push_back(creatureId);
  1077. sendAndApply(&ssi);
  1078. }
  1079. }
  1080. void CGameHandler::newTurn()
  1081. {
  1082. logGlobal->traceStream() << "Turn " << gs->day+1;
  1083. NewTurn n;
  1084. n.specialWeek = NewTurn::NO_ACTION;
  1085. n.creatureid = CreatureID::NONE;
  1086. n.day = gs->day + 1;
  1087. bool firstTurn = !getDate(Date::DAY);
  1088. bool newWeek = getDate(Date::DAY_OF_WEEK) == 7; //day numbers are confusing, as day was not yet switched
  1089. bool newMonth = getDate(Date::DAY_OF_MONTH) == 28;
  1090. std::map<PlayerColor, si32> hadGold;//starting gold - for buildings like dwarven treasury
  1091. if (firstTurn)
  1092. {
  1093. for (auto obj : gs->map->objects)
  1094. {
  1095. if (obj && obj->ID == Obj::PRISON) //give imprisoned hero 0 exp to level him up. easiest to do at this point
  1096. {
  1097. changePrimSkill (getHero(obj->id), PrimarySkill::EXPERIENCE, 0);
  1098. }
  1099. }
  1100. }
  1101. if (newWeek && !firstTurn)
  1102. {
  1103. n.specialWeek = NewTurn::NORMAL;
  1104. bool deityOfFireBuilt = false;
  1105. for(const CGTownInstance *t : gs->map->towns)
  1106. {
  1107. if(t->hasBuilt(BuildingID::GRAIL, ETownType::INFERNO))
  1108. {
  1109. deityOfFireBuilt = true;
  1110. break;
  1111. }
  1112. }
  1113. if(deityOfFireBuilt)
  1114. {
  1115. n.specialWeek = NewTurn::DEITYOFFIRE;
  1116. n.creatureid = CreatureID::IMP;
  1117. }
  1118. else
  1119. {
  1120. int monthType = gs->getRandomGenerator().nextInt(99);
  1121. if(newMonth) //new month
  1122. {
  1123. if (monthType < 40) //double growth
  1124. {
  1125. n.specialWeek = NewTurn::DOUBLE_GROWTH;
  1126. if (VLC->modh->settings.ALL_CREATURES_GET_DOUBLE_MONTHS)
  1127. {
  1128. std::pair<int, CreatureID> newMonster(54, VLC->creh->pickRandomMonster(gs->getRandomGenerator()));
  1129. n.creatureid = newMonster.second;
  1130. }
  1131. else if(VLC->creh->doubledCreatures.size())
  1132. {
  1133. const std::vector<CreatureID> doubledCreatures (VLC->creh->doubledCreatures.begin(), VLC->creh->doubledCreatures.end());
  1134. n.creatureid = *RandomGeneratorUtil::nextItem(doubledCreatures, gs->getRandomGenerator());
  1135. }
  1136. else
  1137. {
  1138. complain("Cannot find creature that can be spawned!");
  1139. n.specialWeek = NewTurn::NORMAL;
  1140. }
  1141. }
  1142. else if (monthType < 50)
  1143. n.specialWeek = NewTurn::PLAGUE;
  1144. }
  1145. else //it's a week, but not full month
  1146. {
  1147. if (monthType < 25)
  1148. {
  1149. n.specialWeek = NewTurn::BONUS_GROWTH; //+5
  1150. std::pair<int, CreatureID> newMonster(54, VLC->creh->pickRandomMonster(gs->getRandomGenerator()));
  1151. //TODO do not pick neutrals
  1152. n.creatureid = newMonster.second;
  1153. }
  1154. }
  1155. }
  1156. }
  1157. std::map<ui32, ConstTransitivePtr<CGHeroInstance> > pool = gs->hpool.heroesPool;
  1158. for (auto & elem : gs->players)
  1159. {
  1160. if(elem.first == PlayerColor::NEUTRAL)
  1161. continue;
  1162. else if(elem.first >= PlayerColor::PLAYER_LIMIT)
  1163. assert(0); //illegal player number!
  1164. std::pair<PlayerColor, si32> playerGold(elem.first, elem.second.resources.at(Res::GOLD));
  1165. hadGold.insert(playerGold);
  1166. if(newWeek) //new heroes in tavern
  1167. {
  1168. SetAvailableHeroes sah;
  1169. sah.player = elem.first;
  1170. //pick heroes and their armies
  1171. CHeroClass *banned = nullptr;
  1172. for (int j = 0; j < GameConstants::AVAILABLE_HEROES_PER_PLAYER; j++)
  1173. {
  1174. //first hero - native if possible, second hero -> any other class
  1175. if(CGHeroInstance *h = gs->hpool.pickHeroFor(j == 0, elem.first, getNativeTown(elem.first), pool, gs->getRandomGenerator(), banned))
  1176. {
  1177. sah.hid[j] = h->subID;
  1178. h->initArmy(&sah.army[j]);
  1179. banned = h->type->heroClass;
  1180. }
  1181. else
  1182. sah.hid[j] = -1;
  1183. }
  1184. sendAndApply(&sah);
  1185. }
  1186. n.res[elem.first] = elem.second.resources;
  1187. for(CGHeroInstance *h : (elem).second.heroes)
  1188. {
  1189. if(h->visitedTown)
  1190. giveSpells(h->visitedTown, h);
  1191. NewTurn::Hero hth;
  1192. hth.id = h->id;
  1193. // TODO: this code executed when bonuses of previous day not yet updated (this happen in NewTurn::applyGs). See issue 2356
  1194. hth.move = h->maxMovePoints(gs->map->getTile(h->getPosition(false)).terType != ETerrainType::WATER, new TurnInfo(h, 1));
  1195. if(h->visitedTown && h->visitedTown->hasBuilt(BuildingID::MAGES_GUILD_1)) //if hero starts turn in town with mage guild
  1196. hth.mana = std::max(h->mana, h->manaLimit()); //restore all mana
  1197. else
  1198. hth.mana = std::max((si32)(0), std::max(h->mana, std::min((si32)(h->mana + h->manaRegain()), h->manaLimit())));
  1199. n.heroes.insert(hth);
  1200. if(!firstTurn) //not first day
  1201. {
  1202. n.res[elem.first][Res::GOLD] += h->valOfBonuses(Selector::typeSubtype(Bonus::SECONDARY_SKILL_PREMY, SecondarySkill::ESTATES)); //estates
  1203. for (int k = 0; k < GameConstants::RESOURCE_QUANTITY; k++)
  1204. {
  1205. n.res[elem.first][k] += h->valOfBonuses(Bonus::GENERATE_RESOURCE, k);
  1206. }
  1207. }
  1208. }
  1209. }
  1210. for(CGTownInstance *t : gs->map->towns)
  1211. {
  1212. PlayerColor player = t->tempOwner;
  1213. handleTownEvents(t, n);
  1214. if(newWeek) //first day of week
  1215. {
  1216. if(t->hasBuilt(BuildingID::PORTAL_OF_SUMMON, ETownType::DUNGEON))
  1217. setPortalDwelling(t, true, (n.specialWeek == NewTurn::PLAGUE ? true : false)); //set creatures for Portal of Summoning
  1218. if(!firstTurn)
  1219. if (t->hasBuilt(BuildingID::TREASURY, ETownType::RAMPART) && player < PlayerColor::PLAYER_LIMIT)
  1220. n.res[player][Res::GOLD] += hadGold.at(player)/10; //give 10% of starting gold
  1221. if (!vstd::contains(n.cres, t->id))
  1222. {
  1223. n.cres[t->id].tid = t->id;
  1224. n.cres[t->id].creatures = t->creatures;
  1225. }
  1226. auto & sac = n.cres.at(t->id);
  1227. for (int k=0; k < GameConstants::CREATURES_PER_TOWN; k++) //creature growths
  1228. {
  1229. if (!t->creatures.at(k).second.empty()) // there are creatures at this level
  1230. {
  1231. ui32 &availableCount = sac.creatures.at(k).first;
  1232. const CCreature *cre = VLC->creh->creatures.at(t->creatures.at(k).second.back());
  1233. if (n.specialWeek == NewTurn::PLAGUE)
  1234. availableCount = t->creatures.at(k).first / 2; //halve their number, no growth
  1235. else
  1236. {
  1237. if(firstTurn) //first day of game: use only basic growths
  1238. availableCount = cre->growth;
  1239. else
  1240. availableCount += t->creatureGrowth(k);
  1241. //Deity of fire week - upgrade both imps and upgrades
  1242. if (n.specialWeek == NewTurn::DEITYOFFIRE && vstd::contains(t->creatures.at(k).second, n.creatureid))
  1243. availableCount += 15;
  1244. if( cre->idNumber == n.creatureid ) //bonus week, effect applies only to identical creatures
  1245. {
  1246. if(n.specialWeek == NewTurn::DOUBLE_GROWTH)
  1247. availableCount *= 2;
  1248. else if(n.specialWeek == NewTurn::BONUS_GROWTH)
  1249. availableCount += 5;
  1250. }
  1251. }
  1252. }
  1253. }
  1254. }
  1255. if(!firstTurn && player < PlayerColor::PLAYER_LIMIT)//not the first day and town not neutral
  1256. {
  1257. n.res[player] = n.res[player] + t->dailyIncome();
  1258. }
  1259. if(t->hasBuilt(BuildingID::GRAIL, ETownType::TOWER))
  1260. {
  1261. // Skyship, probably easier to handle same as Veil of darkness
  1262. //do it every new day after veils apply
  1263. if (player != PlayerColor::NEUTRAL) //do not reveal fow for neutral player
  1264. {
  1265. FoWChange fw;
  1266. fw.mode = 1;
  1267. fw.player = player;
  1268. // find all hidden tiles
  1269. const auto & fow = gs->getPlayerTeam(player)->fogOfWarMap;
  1270. for (size_t i=0; i<fow.size(); i++)
  1271. for (size_t j=0; j<fow.at(i).size(); j++)
  1272. for (size_t k=0; k<fow.at(i).at(j).size(); k++)
  1273. if (!fow.at(i).at(j).at(k))
  1274. fw.tiles.insert(int3(i,j,k));
  1275. sendAndApply (&fw);
  1276. }
  1277. }
  1278. if (t->hasBonusOfType (Bonus::DARKNESS))
  1279. {
  1280. for (auto & player : gameState()->players)
  1281. {
  1282. if (getPlayerStatus(player.first) == EPlayerStatus::INGAME &&
  1283. getPlayerRelations(player.first, t->tempOwner) == PlayerRelations::ENEMIES)
  1284. changeFogOfWar(t->visitablePos(), t->getBonusLocalFirst(Selector::type(Bonus::DARKNESS))->val, player.first, true);
  1285. }
  1286. }
  1287. }
  1288. if(newMonth)
  1289. {
  1290. SetAvailableArtifacts saa;
  1291. saa.id = -1;
  1292. pickAllowedArtsSet(saa.arts);
  1293. sendAndApply(&saa);
  1294. }
  1295. sendAndApply(&n);
  1296. if(newWeek)
  1297. {
  1298. //spawn wandering monsters
  1299. if (newMonth && (n.specialWeek == NewTurn::DOUBLE_GROWTH || n.specialWeek == NewTurn::DEITYOFFIRE))
  1300. {
  1301. spawnWanderingMonsters(n.creatureid);
  1302. }
  1303. //new week info popup
  1304. if(!firstTurn)
  1305. {
  1306. InfoWindow iw;
  1307. switch (n.specialWeek)
  1308. {
  1309. case NewTurn::DOUBLE_GROWTH:
  1310. iw.text.addTxt(MetaString::ARRAY_TXT, 131);
  1311. iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
  1312. iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
  1313. break;
  1314. case NewTurn::PLAGUE:
  1315. iw.text.addTxt(MetaString::ARRAY_TXT, 132);
  1316. break;
  1317. case NewTurn::BONUS_GROWTH:
  1318. iw.text.addTxt(MetaString::ARRAY_TXT, 134);
  1319. iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
  1320. iw.text.addReplacement(MetaString::CRE_SING_NAMES, n.creatureid);
  1321. break;
  1322. case NewTurn::DEITYOFFIRE:
  1323. iw.text.addTxt(MetaString::ARRAY_TXT, 135);
  1324. iw.text.addReplacement(MetaString::CRE_SING_NAMES, 42); //%s imp
  1325. iw.text.addReplacement(MetaString::CRE_SING_NAMES, 42); //%s imp
  1326. iw.text.addReplacement2(15); //%+d 15
  1327. iw.text.addReplacement(MetaString::CRE_SING_NAMES, 43); //%s familiar
  1328. iw.text.addReplacement2(15); //%+d 15
  1329. break;
  1330. default:
  1331. if (newMonth)
  1332. {
  1333. iw.text.addTxt(MetaString::ARRAY_TXT, (130));
  1334. iw.text.addReplacement(MetaString::ARRAY_TXT, gs->getRandomGenerator().nextInt(32, 41));
  1335. }
  1336. else
  1337. {
  1338. iw.text.addTxt(MetaString::ARRAY_TXT, (133));
  1339. iw.text.addReplacement(MetaString::ARRAY_TXT, gs->getRandomGenerator().nextInt(43, 57));
  1340. }
  1341. }
  1342. for (auto & elem : gs->players)
  1343. {
  1344. iw.player = elem.first;
  1345. sendAndApply(&iw);
  1346. }
  1347. }
  1348. }
  1349. logGlobal->traceStream() << "Info about turn " << n.day << "has been sent!";
  1350. handleTimeEvents();
  1351. //call objects
  1352. for(auto & elem : gs->map->objects)
  1353. {
  1354. if(elem)
  1355. elem->newTurn();
  1356. }
  1357. //count days without town for all players, regardless of their turn order
  1358. for (auto &p : gs->players)
  1359. {
  1360. PlayerState & playerState = p.second;
  1361. if (playerState.status == EPlayerStatus::INGAME)
  1362. {
  1363. if (playerState.towns.empty())
  1364. {
  1365. if (playerState.daysWithoutCastle)
  1366. ++(*playerState.daysWithoutCastle);
  1367. else playerState.daysWithoutCastle = 0;
  1368. }
  1369. else
  1370. {
  1371. playerState.daysWithoutCastle = boost::none;
  1372. }
  1373. }
  1374. }
  1375. synchronizeArtifactHandlerLists(); //new day events may have changed them. TODO better of managing that
  1376. }
  1377. void CGameHandler::run(bool resume)
  1378. {
  1379. LOG_TRACE_PARAMS(logGlobal, "resume=%d", resume);
  1380. using namespace boost::posix_time;
  1381. for(CConnection *cc : conns)
  1382. {
  1383. if(!resume)
  1384. {
  1385. (*cc) << gs->initialOpts; // gs->scenarioOps
  1386. }
  1387. std::set<PlayerColor> players;
  1388. (*cc) >> players; //how many players will be handled at that client
  1389. std::stringstream sbuffer;
  1390. sbuffer << "Connection " << cc->connectionID << " will handle " << players.size() << " player: ";
  1391. for(PlayerColor color : players)
  1392. {
  1393. sbuffer << color << " ";
  1394. {
  1395. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  1396. connections[color] = cc;
  1397. }
  1398. }
  1399. logGlobal->infoStream() << sbuffer.str();
  1400. cc->addStdVecItems(gs);
  1401. cc->enableStackSendingByID();
  1402. cc->disableSmartPointerSerialization();
  1403. }
  1404. for(auto & elem : conns)
  1405. {
  1406. std::set<PlayerColor> pom;
  1407. for(auto j = connections.cbegin(); j!=connections.cend();j++)
  1408. if(j->second == elem)
  1409. pom.insert(j->first);
  1410. boost::thread(std::bind(&CGameHandler::handleConnection,this,pom,std::ref(*elem)));
  1411. }
  1412. if(gs->scenarioOps->mode == StartInfo::DUEL)
  1413. {
  1414. runBattle();
  1415. end2 = true;
  1416. while(conns.size() && (*conns.begin())->isOpen())
  1417. boost::this_thread::sleep(boost::posix_time::milliseconds(5)); //give time client to close socket
  1418. return;
  1419. }
  1420. auto playerTurnOrder = generatePlayerTurnOrder();
  1421. while(!end2)
  1422. {
  1423. if(!resume) newTurn();
  1424. std::list<PlayerColor>::iterator it;
  1425. if(resume)
  1426. {
  1427. it = std::find(playerTurnOrder.begin(), playerTurnOrder.end(), gs->currentPlayer);
  1428. }
  1429. else
  1430. {
  1431. it = playerTurnOrder.begin();
  1432. }
  1433. resume = false;
  1434. for (; it != playerTurnOrder.end(); it++)
  1435. {
  1436. auto playerColor = *it;
  1437. PlayerState * playerState = &gs->players[playerColor]; //can't copy CBonusSystemNode by value
  1438. if (playerState->status == EPlayerStatus::INGAME)
  1439. {
  1440. //if player runs out of time, he shouldn't get the turn (especially AI)
  1441. checkVictoryLossConditionsForAll();
  1442. if (gs->players[playerColor].status != EPlayerStatus::INGAME)
  1443. { //player lost at the beginning of his turn
  1444. continue;
  1445. }
  1446. else //give normal turn
  1447. {
  1448. states.setFlag(playerColor, &PlayerStatus::makingTurn, true);
  1449. YourTurn yt;
  1450. yt.player = playerColor;
  1451. //Change local daysWithoutCastle counter for local interface message //TODO: needed?
  1452. yt.daysWithoutCastle = playerState->daysWithoutCastle;
  1453. applyAndSend(&yt);
  1454. //wait till turn is done
  1455. boost::unique_lock<boost::mutex> lock(states.mx);
  1456. while (states.players.at(playerColor).makingTurn && !end2)
  1457. {
  1458. static time_duration p = milliseconds(100);
  1459. states.cv.timed_wait(lock, p);
  1460. }
  1461. }
  1462. }
  1463. }
  1464. //additional check that game is not finished
  1465. bool activePlayer = false;
  1466. for(auto player : playerTurnOrder)
  1467. {
  1468. if(gs->players[player].status == EPlayerStatus::INGAME)
  1469. activePlayer = true;
  1470. }
  1471. if(!activePlayer)
  1472. end2 = true;
  1473. }
  1474. while(conns.size() && (*conns.begin())->isOpen())
  1475. boost::this_thread::sleep(boost::posix_time::milliseconds(5)); //give time client to close socket
  1476. }
  1477. std::list<PlayerColor> CGameHandler::generatePlayerTurnOrder() const
  1478. {
  1479. // Generate player turn order
  1480. std::list<PlayerColor> playerTurnOrder;
  1481. for(const auto & player : gs->players) // add human players first
  1482. {
  1483. if(player.second.human)
  1484. playerTurnOrder.push_back(player.first);
  1485. }
  1486. for(const auto & player : gs->players) // then add non-human players
  1487. {
  1488. if(!player.second.human)
  1489. playerTurnOrder.push_back(player.first);
  1490. }
  1491. return playerTurnOrder;
  1492. }
  1493. void CGameHandler::setupBattle( int3 tile, const CArmedInstance *armies[2], const CGHeroInstance *heroes[2], bool creatureBank, const CGTownInstance *town )
  1494. {
  1495. battleResult.set(nullptr);
  1496. //send info about battles
  1497. BattleStart bs;
  1498. bs.info = gs->setupBattle(tile, armies, heroes, creatureBank, town);
  1499. sendAndApply(&bs);
  1500. }
  1501. void CGameHandler::checkForBattleEnd()
  1502. {
  1503. if(auto result = battleIsFinished())
  1504. {
  1505. setBattleResult(BattleResult::NORMAL, *result);
  1506. }
  1507. }
  1508. void CGameHandler::giveSpells( const CGTownInstance *t, const CGHeroInstance *h )
  1509. {
  1510. if(!h->hasSpellbook())
  1511. return; //hero hasn't spellbook
  1512. ChangeSpells cs;
  1513. cs.hid = h->id;
  1514. cs.learn = true;
  1515. for(int i=0; i<std::min(t->mageGuildLevel(),h->getSecSkillLevel(SecondarySkill::WISDOM)+2);i++)
  1516. {
  1517. if (t->hasBuilt(BuildingID::GRAIL, ETownType::CONFLUX)) //Aurora Borealis
  1518. {
  1519. std::vector<SpellID> spells;
  1520. getAllowedSpells(spells, i);
  1521. for (auto & spell : spells)
  1522. cs.spells.insert(spell);
  1523. }
  1524. else
  1525. {
  1526. for(int j=0; j<t->spellsAtLevel(i+1,true) && j<t->spells.at(i).size(); j++)
  1527. {
  1528. if(!vstd::contains(h->spells,t->spells.at(i).at(j)))
  1529. cs.spells.insert(t->spells.at(i).at(j));
  1530. }
  1531. }
  1532. }
  1533. if(!cs.spells.empty())
  1534. sendAndApply(&cs);
  1535. }
  1536. void CGameHandler::setBlockVis(ObjectInstanceID objid, bool bv)
  1537. {
  1538. SetObjectProperty sop(objid,2,bv);
  1539. sendAndApply(&sop);
  1540. }
  1541. bool CGameHandler::removeObject( const CGObjectInstance * obj )
  1542. {
  1543. if(!obj || !getObj(obj->id))
  1544. {
  1545. logGlobal->errorStream() << "Something wrong, that object already has been removed or hasn't existed!";
  1546. return false;
  1547. }
  1548. RemoveObject ro;
  1549. ro.id = obj->id;
  1550. sendAndApply(&ro);
  1551. checkVictoryLossConditionsForAll(); //eg if monster escaped (removing objs after battle is done dircetly by endBattle, not this function)
  1552. return true;
  1553. }
  1554. void CGameHandler::setAmount(ObjectInstanceID objid, ui32 val)
  1555. {
  1556. SetObjectProperty sop(objid,3,val);
  1557. sendAndApply(&sop);
  1558. }
  1559. bool CGameHandler::moveHero( ObjectInstanceID hid, int3 dst, ui8 teleporting, bool transit, PlayerColor asker /*= 255*/ )
  1560. {
  1561. const CGHeroInstance *h = getHero(hid);
  1562. if(!h || (asker != PlayerColor::NEUTRAL && (teleporting || h->getOwner() != gs->currentPlayer)) //not turn of that hero or player can't simply teleport hero (at least not with this function)
  1563. )
  1564. {
  1565. logGlobal->errorStream() << "Illegal call to move hero!";
  1566. return false;
  1567. }
  1568. logGlobal->traceStream() << "Player " << asker << " wants to move hero "<< hid.getNum() << " from "<< h->pos << " to " << dst;
  1569. const int3 hmpos = CGHeroInstance::convertPosition(dst, false);
  1570. if(!gs->map->isInTheMap(hmpos))
  1571. {
  1572. logGlobal->errorStream() << "Destination tile is outside the map!";
  1573. return false;
  1574. }
  1575. const TerrainTile t = *gs->getTile(hmpos);
  1576. const int3 guardPos = gs->guardingCreaturePosition(hmpos);
  1577. const bool embarking = !h->boat && !t.visitableObjects.empty() && t.visitableObjects.back()->ID == Obj::BOAT;
  1578. const bool disembarking = h->boat && t.terType != ETerrainType::WATER && !t.blocked;
  1579. //result structure for start - movement failed, no move points used
  1580. TryMoveHero tmh;
  1581. tmh.id = hid;
  1582. tmh.start = h->pos;
  1583. tmh.end = dst;
  1584. tmh.result = TryMoveHero::FAILED;
  1585. tmh.movePoints = h->movement;
  1586. //check if destination tile is available
  1587. auto ti = new TurnInfo(h);
  1588. const bool canFly = ti->hasBonusOfType(Bonus::FLYING_MOVEMENT);
  1589. const bool canWalkOnSea = ti->hasBonusOfType(Bonus::WATER_WALKING);
  1590. const int cost = CPathfinderHelper::getMovementCost(h, h->getPosition(), hmpos, nullptr, nullptr, h->movement, ti);
  1591. //it's a rock or blocked and not visitable tile
  1592. //OR hero is on land and dest is water and (there is not present only one object - boat)
  1593. if(((t.terType == ETerrainType::ROCK || (t.blocked && !t.visitable && !canFly))
  1594. && complain("Cannot move hero, destination tile is blocked!"))
  1595. || ((!h->boat && !canWalkOnSea && !canFly && t.terType == ETerrainType::WATER && (t.visitableObjects.size() < 1 || (t.visitableObjects.back()->ID != Obj::BOAT && t.visitableObjects.back()->ID != Obj::HERO))) //hero is not on boat/water walking and dst water tile doesn't contain boat/hero (objs visitable from land) -> we test back cause boat may be on top of another object (#276)
  1596. && complain("Cannot move hero, destination tile is on water!"))
  1597. || ((h->boat && t.terType != ETerrainType::WATER && t.blocked)
  1598. && complain("Cannot disembark hero, tile is blocked!"))
  1599. || ( (distance(h->pos, dst) >= 1.5 && !teleporting)
  1600. && complain("Tiles are not neighboring!"))
  1601. || ( (h->inTownGarrison)
  1602. && complain("Can not move garrisoned hero!"))
  1603. || ((h->movement < cost && dst != h->pos && !teleporting)
  1604. && complain("Hero doesn't have any movement points left!"))
  1605. || ((transit && !canFly && !CGTeleport::isTeleport(t.topVisitableObj()))
  1606. && complain("Hero cannot transit over this tile!"))
  1607. /*|| (states.checkFlag(h->tempOwner, &PlayerStatus::engagedIntoBattle)
  1608. && complain("Cannot move hero during the battle"))*/)
  1609. {
  1610. //send info about movement failure
  1611. sendAndApply(&tmh);
  1612. return false;
  1613. }
  1614. //several generic blocks of code
  1615. // should be called if hero changes tile but before applying TryMoveHero package
  1616. auto leaveTile = [&]()
  1617. {
  1618. for(CGObjectInstance *obj : gs->map->getTile(int3(h->pos.x-1, h->pos.y, h->pos.z)).visitableObjects)
  1619. {
  1620. obj->onHeroLeave(h);
  1621. }
  1622. this->getTilesInRange(tmh.fowRevealed, h->getSightCenter()+(tmh.end-tmh.start), h->getSightRadious(), h->tempOwner, 1);
  1623. };
  1624. auto doMove = [&](TryMoveHero::EResult result, EGuardLook lookForGuards,
  1625. EVisitDest visitDest, ELEaveTile leavingTile) -> bool
  1626. {
  1627. LOG_TRACE_PARAMS(logGlobal, "Hero %s starts movement from %s to %s", h->name % tmh.start % tmh.end);
  1628. auto moveQuery = std::make_shared<CHeroMovementQuery>(tmh, h);
  1629. queries.addQuery(moveQuery);
  1630. if(leavingTile == LEAVING_TILE)
  1631. leaveTile();
  1632. tmh.result = result;
  1633. sendAndApply(&tmh);
  1634. if (visitDest == VISIT_DEST && t.topVisitableObj() && t.topVisitableObj()->id == h->id)
  1635. { // Hero should be always able to visit any object he staying on even if there guards around
  1636. visitObjectOnTile(t, h);
  1637. }
  1638. else if(lookForGuards == CHECK_FOR_GUARDS && this->isInTheMap(guardPos))
  1639. {
  1640. tmh.attackedFrom = guardPos;
  1641. const TerrainTile &guardTile = *gs->getTile(guardPos);
  1642. objectVisited(guardTile.visitableObjects.back(), h);
  1643. moveQuery->visitDestAfterVictory = visitDest==VISIT_DEST;
  1644. }
  1645. else if(visitDest == VISIT_DEST)
  1646. {
  1647. visitObjectOnTile(t, h);
  1648. }
  1649. queries.popIfTop(moveQuery);
  1650. logGlobal->traceStream() << "Hero " << h->name << " ends movement";
  1651. return result != TryMoveHero::FAILED;
  1652. };
  1653. //interaction with blocking object (like resources)
  1654. auto blockingVisit = [&]() -> bool
  1655. {
  1656. for(CGObjectInstance *obj : t.visitableObjects)
  1657. {
  1658. if(obj != h && obj->blockVisit && !obj->passableFor(h->tempOwner))
  1659. {
  1660. return doMove(TryMoveHero::BLOCKING_VISIT, this->IGNORE_GUARDS, VISIT_DEST, REMAINING_ON_TILE);
  1661. //this-> is needed for MVS2010 to recognize scope (?)
  1662. }
  1663. }
  1664. return false;
  1665. };
  1666. if(!transit && embarking)
  1667. {
  1668. tmh.movePoints = h->movementPointsAfterEmbark(h->movement, cost, false, ti);
  1669. return doMove(TryMoveHero::EMBARK, IGNORE_GUARDS, DONT_VISIT_DEST, LEAVING_TILE);
  1670. // In H3 embark ignore guards
  1671. }
  1672. if(disembarking)
  1673. {
  1674. tmh.movePoints = h->movementPointsAfterEmbark(h->movement, cost, true, ti);
  1675. return doMove(TryMoveHero::DISEMBARK, CHECK_FOR_GUARDS, VISIT_DEST, LEAVING_TILE);
  1676. }
  1677. if(teleporting)
  1678. {
  1679. if(blockingVisit()) // e.g. hero on the other side of teleporter
  1680. return true;
  1681. doMove(TryMoveHero::TELEPORTATION, IGNORE_GUARDS, DONT_VISIT_DEST, LEAVING_TILE);
  1682. // visit town for town portal \ castle gates
  1683. // do not use generic visitObjectOnTile to avoid double-teleporting
  1684. // if this moveHero call was triggered by teleporter
  1685. if (!t.visitableObjects.empty())
  1686. {
  1687. if (CGTownInstance * town = dynamic_cast<CGTownInstance *>(t.visitableObjects.back()))
  1688. town->onHeroVisit(h);
  1689. }
  1690. return true;
  1691. }
  1692. //still here? it is standard movement!
  1693. {
  1694. tmh.movePoints = h->movement >= cost
  1695. ? h->movement - cost
  1696. : 0;
  1697. EGuardLook lookForGuards = CHECK_FOR_GUARDS;
  1698. EVisitDest visitDest = VISIT_DEST;
  1699. if(transit)
  1700. {
  1701. if(CGTeleport::isTeleport(t.topVisitableObj()))
  1702. visitDest = DONT_VISIT_DEST;
  1703. if(canFly)
  1704. {
  1705. lookForGuards = IGNORE_GUARDS;
  1706. visitDest = DONT_VISIT_DEST;
  1707. }
  1708. }
  1709. else if(blockingVisit())
  1710. return true;
  1711. doMove(TryMoveHero::SUCCESS, lookForGuards, visitDest, LEAVING_TILE);
  1712. return true;
  1713. }
  1714. }
  1715. bool CGameHandler::teleportHero(ObjectInstanceID hid, ObjectInstanceID dstid, ui8 source, PlayerColor asker/* = 255*/)
  1716. {
  1717. const CGHeroInstance *h = getHero(hid);
  1718. const CGTownInstance *t = getTown(dstid);
  1719. if ( !h || !t || h->getOwner() != gs->currentPlayer )
  1720. logGlobal->errorStream()<<"Invalid call to teleportHero!";
  1721. const CGTownInstance *from = h->visitedTown;
  1722. if(((h->getOwner() != t->getOwner())
  1723. && complain("Cannot teleport hero to another player"))
  1724. || ((!from || !from->hasBuilt(BuildingID::CASTLE_GATE, ETownType::INFERNO))
  1725. && complain("Hero must be in town with Castle gate for teleporting"))
  1726. || (!t->hasBuilt(BuildingID::CASTLE_GATE, ETownType::INFERNO)
  1727. && complain("Cannot teleport hero to town without Castle gate in it")))
  1728. return false;
  1729. int3 pos = t->visitablePos();
  1730. pos += h->getVisitableOffset();
  1731. moveHero(hid,pos,1);
  1732. return true;
  1733. }
  1734. void CGameHandler::setOwner(const CGObjectInstance * obj, PlayerColor owner)
  1735. {
  1736. PlayerColor oldOwner = getOwner(obj->id);
  1737. SetObjectProperty sop(obj->id, 1, owner.getNum());
  1738. sendAndApply(&sop);
  1739. std::set<PlayerColor> playerColors = {owner, oldOwner};
  1740. checkVictoryLossConditions(playerColors);
  1741. if(dynamic_cast<const CGTownInstance *>(obj)) //town captured
  1742. {
  1743. if (owner < PlayerColor::PLAYER_LIMIT) //new owner is real player
  1744. {
  1745. const CGTownInstance * town = dynamic_cast<const CGTownInstance *>(obj);
  1746. if (town->hasBuilt(BuildingID::PORTAL_OF_SUMMON, ETownType::DUNGEON))
  1747. setPortalDwelling(town, true, false);
  1748. gs->getPlayer(owner)->daysWithoutCastle = boost::none; // reset counter
  1749. }
  1750. if (oldOwner < PlayerColor::PLAYER_LIMIT) //old owner is real player
  1751. {
  1752. if (gs->getPlayer(oldOwner)->towns.empty())//previous player lost last last town
  1753. {
  1754. InfoWindow iw;
  1755. iw.player = oldOwner;
  1756. iw.text.addTxt(MetaString::GENERAL_TXT, 6); //%s, you have lost your last town. If you do not conquer another town in the next week, you will be eliminated.
  1757. iw.text.addReplacement(MetaString::COLOR, oldOwner.getNum());
  1758. sendAndApply(&iw);
  1759. }
  1760. }
  1761. }
  1762. const PlayerState * p = gs->getPlayer(owner);
  1763. if((obj->ID == Obj::CREATURE_GENERATOR1 || obj->ID == Obj::CREATURE_GENERATOR4 ) && p && p->dwellings.size()==1)//first dwelling captured
  1764. {
  1765. for(const CGTownInstance *t : gs->getPlayer(owner)->towns)
  1766. {
  1767. if (t->hasBuilt(BuildingID::PORTAL_OF_SUMMON, ETownType::DUNGEON))
  1768. setPortalDwelling(t);//set initial creatures for all portals of summoning
  1769. }
  1770. }
  1771. }
  1772. void CGameHandler::showBlockingDialog( BlockingDialog *iw )
  1773. {
  1774. auto dialogQuery = std::make_shared<CBlockingDialogQuery>(*iw);
  1775. queries.addQuery(dialogQuery);
  1776. iw->queryID = dialogQuery->queryID;
  1777. sendToAllClients(iw);
  1778. }
  1779. void CGameHandler::showTeleportDialog( TeleportDialog *iw )
  1780. {
  1781. auto dialogQuery = std::make_shared<CTeleportDialogQuery>(*iw);
  1782. queries.addQuery(dialogQuery);
  1783. iw->queryID = dialogQuery->queryID;
  1784. sendToAllClients(iw);
  1785. }
  1786. void CGameHandler::giveResource(PlayerColor player, Res::ERes which, int val) //TODO: cap according to Bersy's suggestion
  1787. {
  1788. if(!val) return; //don't waste time on empty call
  1789. SetResource sr;
  1790. sr.player = player;
  1791. sr.resid = which;
  1792. sr.val = gs->players.find(player)->second.resources.at(which) + val;
  1793. sendAndApply(&sr);
  1794. }
  1795. void CGameHandler::giveResources(PlayerColor player, TResources resources)
  1796. {
  1797. for(TResources::nziterator i(resources); i.valid(); i++)
  1798. giveResource(player, i->resType, i->resVal);
  1799. }
  1800. void CGameHandler::giveCreatures(const CArmedInstance *obj, const CGHeroInstance * h, const CCreatureSet &creatures, bool remove)
  1801. {
  1802. COMPLAIN_RET_IF(!creatures.stacksCount(), "Strange, giveCreatures called without args!");
  1803. COMPLAIN_RET_IF(obj->stacksCount(), "Cannot give creatures from not-cleared object!");
  1804. COMPLAIN_RET_IF(creatures.stacksCount() > GameConstants::ARMY_SIZE, "Too many stacks to give!");
  1805. //first we move creatures to give to make them army of object-source
  1806. for (auto & elem : creatures.Slots())
  1807. {
  1808. addToSlot(StackLocation(obj, obj->getSlotFor(elem.second->type)), elem.second->type, elem.second->count);
  1809. }
  1810. tryJoiningArmy(obj, h, remove, true);
  1811. }
  1812. void CGameHandler::takeCreatures(ObjectInstanceID objid, const std::vector<CStackBasicDescriptor> &creatures)
  1813. {
  1814. std::vector<CStackBasicDescriptor> cres = creatures;
  1815. if (cres.size() <= 0)
  1816. return;
  1817. const CArmedInstance* obj = static_cast<const CArmedInstance*>(getObj(objid));
  1818. for(CStackBasicDescriptor &sbd : cres)
  1819. {
  1820. TQuantity collected = 0;
  1821. while(collected < sbd.count)
  1822. {
  1823. bool foundSth = false;
  1824. for(auto i = obj->Slots().begin(); i != obj->Slots().end(); i++)
  1825. {
  1826. if(i->second->type == sbd.type)
  1827. {
  1828. TQuantity take = std::min(sbd.count - collected, i->second->count); //collect as much cres as we can
  1829. changeStackCount(StackLocation(obj, i->first), -take, false);
  1830. collected += take;
  1831. foundSth = true;
  1832. break;
  1833. }
  1834. }
  1835. if(!foundSth) //we went through the whole loop and haven't found appropriate cres
  1836. {
  1837. complain("Unexpected failure during taking creatures!");
  1838. return;
  1839. }
  1840. }
  1841. }
  1842. }
  1843. void CGameHandler::showCompInfo(ShowInInfobox * comp)
  1844. {
  1845. sendToAllClients(comp);
  1846. }
  1847. void CGameHandler::heroVisitCastle(const CGTownInstance * obj, const CGHeroInstance * hero)
  1848. {
  1849. HeroVisitCastle vc;
  1850. vc.hid = hero->id;
  1851. vc.tid = obj->id;
  1852. vc.flags |= 1;
  1853. sendAndApply(&vc);
  1854. vistiCastleObjects (obj, hero);
  1855. giveSpells (obj, hero);
  1856. checkVictoryLossConditionsForPlayer(hero->tempOwner); //transported artifact?
  1857. }
  1858. void CGameHandler::vistiCastleObjects (const CGTownInstance *t, const CGHeroInstance *h)
  1859. {
  1860. std::vector<CGTownBuilding*>::const_iterator i;
  1861. for (i = t->bonusingBuildings.begin(); i != t->bonusingBuildings.end(); i++)
  1862. (*i)->onHeroVisit (h);
  1863. }
  1864. void CGameHandler::stopHeroVisitCastle(const CGTownInstance * obj, const CGHeroInstance * hero)
  1865. {
  1866. HeroVisitCastle vc;
  1867. vc.hid = hero->id;
  1868. vc.tid = obj->id;
  1869. sendAndApply(&vc);
  1870. }
  1871. void CGameHandler::removeArtifact(const ArtifactLocation &al)
  1872. {
  1873. EraseArtifact ea;
  1874. ea.al = al;
  1875. sendAndApply(&ea);
  1876. }
  1877. void CGameHandler::startBattlePrimary(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile,
  1878. const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool creatureBank,
  1879. const CGTownInstance *town) //use hero=nullptr for no hero
  1880. {
  1881. engageIntoBattle(army1->tempOwner);
  1882. engageIntoBattle(army2->tempOwner);
  1883. static const CArmedInstance *armies[2];
  1884. armies[0] = army1;
  1885. armies[1] = army2;
  1886. static const CGHeroInstance*heroes[2];
  1887. heroes[0] = hero1;
  1888. heroes[1] = hero2;
  1889. setupBattle(tile, armies, heroes, creatureBank, town); //initializes stacks, places creatures on battlefield, blocks and informs player interfaces
  1890. auto battleQuery = std::make_shared<CBattleQuery>(gs->curB);
  1891. queries.addQuery(battleQuery);
  1892. boost::thread(&CGameHandler::runBattle, this);
  1893. }
  1894. void CGameHandler::startBattleI( const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, bool creatureBank )
  1895. {
  1896. startBattlePrimary(army1, army2, tile,
  1897. army1->ID == Obj::HERO ? static_cast<const CGHeroInstance*>(army1) : nullptr,
  1898. army2->ID == Obj::HERO ? static_cast<const CGHeroInstance*>(army2) : nullptr,
  1899. creatureBank);
  1900. }
  1901. void CGameHandler::startBattleI( const CArmedInstance *army1, const CArmedInstance *army2, bool creatureBank)
  1902. {
  1903. startBattleI(army1, army2, army2->visitablePos(), creatureBank);
  1904. }
  1905. void CGameHandler::changeSpells( const CGHeroInstance * hero, bool give, const std::set<SpellID> &spells )
  1906. {
  1907. ChangeSpells cs;
  1908. cs.hid = hero->id;
  1909. cs.spells = spells;
  1910. cs.learn = give;
  1911. sendAndApply(&cs);
  1912. }
  1913. void CGameHandler::sendMessageTo( CConnection &c, const std::string &message )
  1914. {
  1915. SystemMessage sm;
  1916. sm.text = message;
  1917. boost::unique_lock<boost::mutex> lock(*c.wmx);
  1918. c << &sm;
  1919. }
  1920. void CGameHandler::giveHeroBonus( GiveBonus * bonus )
  1921. {
  1922. sendAndApply(bonus);
  1923. }
  1924. void CGameHandler::setMovePoints( SetMovePoints * smp )
  1925. {
  1926. sendAndApply(smp);
  1927. }
  1928. void CGameHandler::setManaPoints( ObjectInstanceID hid, int val )
  1929. {
  1930. SetMana sm;
  1931. sm.hid = hid;
  1932. sm.val = val;
  1933. sm.absolute = true;
  1934. sendAndApply(&sm);
  1935. }
  1936. void CGameHandler::giveHero( ObjectInstanceID id, PlayerColor player )
  1937. {
  1938. GiveHero gh;
  1939. gh.id = id;
  1940. gh.player = player;
  1941. sendAndApply(&gh);
  1942. }
  1943. void CGameHandler::changeObjPos( ObjectInstanceID objid, int3 newPos, ui8 flags )
  1944. {
  1945. ChangeObjPos cop;
  1946. cop.objid = objid;
  1947. cop.nPos = newPos;
  1948. cop.flags = flags;
  1949. sendAndApply(&cop);
  1950. }
  1951. void CGameHandler::useScholarSkill(ObjectInstanceID fromHero, ObjectInstanceID toHero)
  1952. {
  1953. const CGHeroInstance * h1 = getHero(fromHero);
  1954. const CGHeroInstance * h2 = getHero(toHero);
  1955. if ( h1->getSecSkillLevel(SecondarySkill::SCHOLAR) < h2->getSecSkillLevel(SecondarySkill::SCHOLAR) )
  1956. {
  1957. std::swap (h1,h2);//1st hero need to have higher scholar level for correct message
  1958. std::swap(fromHero, toHero);
  1959. }
  1960. int ScholarLevel = h1->getSecSkillLevel(SecondarySkill::SCHOLAR);//heroes can trade up to this level
  1961. if (!ScholarLevel || !h1->hasSpellbook() || !h2->hasSpellbook() )
  1962. return;//no scholar skill or no spellbook
  1963. int h1Lvl = std::min(ScholarLevel+1, h1->getSecSkillLevel(SecondarySkill::WISDOM)+2),
  1964. h2Lvl = std::min(ScholarLevel+1, h2->getSecSkillLevel(SecondarySkill::WISDOM)+2);//heroes can receive this levels
  1965. ChangeSpells cs1;
  1966. cs1.learn = true;
  1967. cs1.hid = toHero;//giving spells to first hero
  1968. for(auto it : h1->spells)
  1969. if ( h2Lvl >= it.toSpell()->level && !vstd::contains(h2->spells, it))//hero can learn it and don't have it yet
  1970. cs1.spells.insert(it);//spell to learn
  1971. ChangeSpells cs2;
  1972. cs2.learn = true;
  1973. cs2.hid = fromHero;
  1974. for(auto it : h2->spells)
  1975. if ( h1Lvl >= it.toSpell()->level && !vstd::contains(h1->spells, it))
  1976. cs2.spells.insert(it);
  1977. if (!cs1.spells.empty() || !cs2.spells.empty())//create a message
  1978. {
  1979. InfoWindow iw;
  1980. iw.player = h1->tempOwner;
  1981. iw.components.push_back(Component(Component::SEC_SKILL, 18, ScholarLevel, 0));
  1982. iw.text.addTxt(MetaString::GENERAL_TXT, 139);//"%s, who has studied magic extensively,
  1983. iw.text.addReplacement(h1->name);
  1984. if (!cs2.spells.empty())//if found new spell - apply
  1985. {
  1986. iw.text.addTxt(MetaString::GENERAL_TXT, 140);//learns
  1987. int size = cs2.spells.size();
  1988. for(auto it : cs2.spells)
  1989. {
  1990. iw.components.push_back(Component(Component::SPELL, it, 1, 0));
  1991. iw.text.addTxt(MetaString::SPELL_NAME, it.toEnum());
  1992. switch (size--)
  1993. {
  1994. case 2: iw.text.addTxt(MetaString::GENERAL_TXT, 141);
  1995. case 1: break;
  1996. default: iw.text << ", ";
  1997. }
  1998. }
  1999. iw.text.addTxt(MetaString::GENERAL_TXT, 142);//from %s
  2000. iw.text.addReplacement(h2->name);
  2001. sendAndApply(&cs2);
  2002. }
  2003. if (!cs1.spells.empty() && !cs2.spells.empty() )
  2004. {
  2005. iw.text.addTxt(MetaString::GENERAL_TXT, 141);//and
  2006. }
  2007. if (!cs1.spells.empty())
  2008. {
  2009. iw.text.addTxt(MetaString::GENERAL_TXT, 147);//teaches
  2010. int size = cs1.spells.size();
  2011. for(auto it : cs1.spells)
  2012. {
  2013. iw.components.push_back(Component(Component::SPELL, it, 1, 0));
  2014. iw.text.addTxt(MetaString::SPELL_NAME, it.toEnum());
  2015. switch (size--)
  2016. {
  2017. case 2: iw.text.addTxt(MetaString::GENERAL_TXT, 141);
  2018. case 1: break;
  2019. default: iw.text << ", ";
  2020. } }
  2021. iw.text.addTxt(MetaString::GENERAL_TXT, 148);//from %s
  2022. iw.text.addReplacement(h2->name);
  2023. sendAndApply(&cs1);
  2024. }
  2025. sendAndApply(&iw);
  2026. }
  2027. }
  2028. void CGameHandler::heroExchange(ObjectInstanceID hero1, ObjectInstanceID hero2)
  2029. {
  2030. auto h1 = getHero(hero1), h2 = getHero(hero2);
  2031. if( gameState()->getPlayerRelations(h1->getOwner(), h2->getOwner()))
  2032. {
  2033. auto exchange = std::make_shared<CGarrisonDialogQuery>(h1, h2);
  2034. ExchangeDialog hex;
  2035. hex.queryID = exchange->queryID;
  2036. hex.heroes[0] = getHero(hero1);
  2037. hex.heroes[1] = getHero(hero2);
  2038. sendAndApply(&hex);
  2039. useScholarSkill(hero1,hero2);
  2040. queries.addQuery(exchange);
  2041. }
  2042. }
  2043. void CGameHandler::sendToAllClients( CPackForClient * info )
  2044. {
  2045. logGlobal->traceStream() << "Sending to all clients a package of type " << typeid(*info).name();
  2046. for(auto & elem : conns)
  2047. {
  2048. boost::unique_lock<boost::mutex> lock(*(elem)->wmx);
  2049. *elem << info;
  2050. }
  2051. }
  2052. void CGameHandler::sendAndApply(CPackForClient * info)
  2053. {
  2054. sendToAllClients(info);
  2055. gs->apply(info);
  2056. }
  2057. void CGameHandler::applyAndSend(CPackForClient * info)
  2058. {
  2059. gs->apply(info);
  2060. sendToAllClients(info);
  2061. }
  2062. void CGameHandler::sendAndApply(CGarrisonOperationPack * info)
  2063. {
  2064. sendAndApply(static_cast<CPackForClient*>(info));
  2065. checkVictoryLossConditionsForAll();
  2066. }
  2067. void CGameHandler::sendAndApply( SetResource * info )
  2068. {
  2069. sendAndApply(static_cast<CPackForClient*>(info));
  2070. checkVictoryLossConditionsForPlayer(info->player);
  2071. }
  2072. void CGameHandler::sendAndApply( SetResources * info )
  2073. {
  2074. sendAndApply(static_cast<CPackForClient*>(info));
  2075. checkVictoryLossConditionsForPlayer(info->player);
  2076. }
  2077. void CGameHandler::sendAndApply( NewStructures * info )
  2078. {
  2079. sendAndApply(static_cast<CPackForClient*>(info));
  2080. checkVictoryLossConditionsForPlayer(getTown(info->tid)->tempOwner);
  2081. }
  2082. void CGameHandler::save(const std::string & filename )
  2083. {
  2084. logGlobal->infoStream() << "Saving to " << filename;
  2085. CFileInfo info(filename);
  2086. //CResourceHandler::get("local")->createResource(info.getStem() + ".vlgm1");
  2087. CResourceHandler::get("local")->createResource(info.getStem() + ".vsgm1");
  2088. {
  2089. logGlobal->infoStream() << "Ordering clients to serialize...";
  2090. SaveGame sg(info.getStem() + ".vcgm1");
  2091. sendToAllClients(&sg);
  2092. }
  2093. try
  2094. {
  2095. // {
  2096. // logGlobal->infoStream() << "Serializing game info...";
  2097. // CSaveFile save(CResourceHandler::get("local")->getResourceName(ResourceID(info.getStem(), EResType::LIB_SAVEGAME)));
  2098. // // char hlp[8] = "VCMISVG";
  2099. // // save << hlp;
  2100. // saveCommonState(save);
  2101. // }
  2102. {
  2103. CSaveFile save(*CResourceHandler::get("local")->getResourceName(ResourceID(info.getStem(), EResType::SERVER_SAVEGAME)));
  2104. saveCommonState(save);
  2105. logGlobal->infoStream() << "Saving server state";
  2106. save << *this;
  2107. }
  2108. logGlobal->infoStream() << "Game has been successfully saved!";
  2109. }
  2110. catch(std::exception &e)
  2111. {
  2112. logGlobal->errorStream() << "Failed to save game: " << e.what();
  2113. }
  2114. }
  2115. void CGameHandler::close()
  2116. {
  2117. logGlobal->infoStream() << "We have been requested to close.";
  2118. if(gs->initialOpts->mode == StartInfo::DUEL)
  2119. {
  2120. exit(0);
  2121. }
  2122. //for(CConnection *cc : conns)
  2123. // if(cc && cc->socket && cc->socket->is_open())
  2124. // cc->socket->close();
  2125. //exit(0);
  2126. }
  2127. bool CGameHandler::arrangeStacks( ObjectInstanceID id1, ObjectInstanceID id2, ui8 what, SlotID p1, SlotID p2, si32 val, PlayerColor player )
  2128. {
  2129. const CArmedInstance *s1 = static_cast<CArmedInstance*>(gs->getObjInstance(id1)),
  2130. *s2 = static_cast<CArmedInstance*>(gs->getObjInstance(id2));
  2131. const CCreatureSet &S1 = *s1, &S2 = *s2;
  2132. StackLocation sl1(s1, p1), sl2(s2, p2);
  2133. if(!sl1.slot.validSlot() || !sl2.slot.validSlot())
  2134. {
  2135. complain("Invalid slot accessed!");
  2136. return false;
  2137. }
  2138. if(!isAllowedExchange(id1,id2))
  2139. {
  2140. complain("Cannot exchange stacks between these two objects!\n");
  2141. return false;
  2142. }
  2143. if(what==1) //swap
  2144. {
  2145. if ( ((s1->tempOwner != player && s1->tempOwner != PlayerColor::UNFLAGGABLE) && s1->getStackCount(p1))
  2146. || ((s2->tempOwner != player && s2->tempOwner != PlayerColor::UNFLAGGABLE) && s2->getStackCount(p2)))
  2147. {
  2148. complain("Can't take troops from another player!");
  2149. return false;
  2150. }
  2151. if (sl1.army == sl2.army && sl1.slot == sl2.slot)
  2152. {
  2153. complain("Cannot swap stacks - slots are the same!");
  2154. return false;
  2155. }
  2156. swapStacks(sl1, sl2);
  2157. }
  2158. else if(what==2)//merge
  2159. {
  2160. if (( s1->getCreature(p1) != s2->getCreature(p2) && complain("Cannot merge different creatures stacks!"))
  2161. || (((s1->tempOwner != player && s1->tempOwner != PlayerColor::UNFLAGGABLE) && s2->getStackCount(p2)) && complain("Can't take troops from another player!")))
  2162. return false;
  2163. moveStack(sl1, sl2);
  2164. }
  2165. else if(what==3) //split
  2166. {
  2167. const int countToMove = val - s2->getStackCount(p2);
  2168. const int countLeftOnSrc = s1->getStackCount(p1) - countToMove;
  2169. if ( (s1->tempOwner != player && countLeftOnSrc < s1->getStackCount(p1) )
  2170. || (s2->tempOwner != player && val < s2->getStackCount(p2) ) )
  2171. {
  2172. complain("Can't move troops of another player!");
  2173. return false;
  2174. }
  2175. //general conditions checking
  2176. if((!vstd::contains(S1.stacks,p1) && complain("no creatures to split"))
  2177. || (val<1 && complain("no creatures to split")) )
  2178. {
  2179. return false;
  2180. }
  2181. if(vstd::contains(S2.stacks,p2)) //dest. slot not free - it must be "rebalancing"...
  2182. {
  2183. int total = s1->getStackCount(p1) + s2->getStackCount(p2);
  2184. if( (total < val && complain("Cannot split that stack, not enough creatures!"))
  2185. || (s1->getCreature(p1) != s2->getCreature(p2) && complain("Cannot rebalance different creatures stacks!"))
  2186. )
  2187. {
  2188. return false;
  2189. }
  2190. moveStack(sl1, sl2, countToMove);
  2191. //S2.slots[p2]->count = val;
  2192. //S1.slots[p1]->count = total - val;
  2193. }
  2194. else //split one stack to the two
  2195. {
  2196. if(s1->getStackCount(p1) < val)//not enough creatures
  2197. {
  2198. complain("Cannot split that stack, not enough creatures!");
  2199. return false;
  2200. }
  2201. moveStack(sl1, sl2, val);
  2202. }
  2203. }
  2204. return true;
  2205. }
  2206. PlayerColor CGameHandler::getPlayerAt( CConnection *c ) const
  2207. {
  2208. std::set<PlayerColor> all;
  2209. for(auto i=connections.cbegin(); i!=connections.cend(); i++)
  2210. if(i->second == c)
  2211. all.insert(i->first);
  2212. switch(all.size())
  2213. {
  2214. case 0:
  2215. return PlayerColor::NEUTRAL;
  2216. case 1:
  2217. return *all.begin();
  2218. default:
  2219. {
  2220. //if we have more than one player at this connection, try to pick active one
  2221. if(vstd::contains(all, gs->currentPlayer))
  2222. return gs->currentPlayer;
  2223. else
  2224. return PlayerColor::CANNOT_DETERMINE; //cannot say which player is it
  2225. }
  2226. }
  2227. }
  2228. bool CGameHandler::disbandCreature( ObjectInstanceID id, SlotID pos )
  2229. {
  2230. CArmedInstance *s1 = static_cast<CArmedInstance*>(gs->getObjInstance(id));
  2231. if(!vstd::contains(s1->stacks,pos))
  2232. {
  2233. complain("Illegal call to disbandCreature - no such stack in army!");
  2234. return false;
  2235. }
  2236. eraseStack(StackLocation(s1, pos));
  2237. return true;
  2238. }
  2239. bool CGameHandler::buildStructure( ObjectInstanceID tid, BuildingID requestedID, bool force /*=false*/ )
  2240. {
  2241. const CGTownInstance * t = getTown(tid);
  2242. if(!t)
  2243. COMPLAIN_RETF("No such town (ID=%s)!", tid);
  2244. if(!t->town->buildings.count(requestedID))
  2245. COMPLAIN_RETF("Town of faction %s does not have info about building ID=%s!", t->town->faction->name % tid);
  2246. if (t->hasBuilt(requestedID))
  2247. COMPLAIN_RETF("Building %s is already built in %s", t->town->buildings.at(requestedID)->Name() % t->name);
  2248. const CBuilding * requestedBuilding = t->town->buildings.at(requestedID);
  2249. //Vector with future list of built building and buildings in auto-mode that are not yet built.
  2250. std::vector<const CBuilding*> remainingAutoBuildings;
  2251. std::set<BuildingID> buildingsThatWillBe;
  2252. //Check validity of request
  2253. if(!force)
  2254. {
  2255. switch (requestedBuilding->mode)
  2256. {
  2257. case CBuilding::BUILD_NORMAL :
  2258. if (gs->canBuildStructure(t, requestedID) != EBuildingState::ALLOWED)
  2259. COMPLAIN_RET("Cannot build that building!");
  2260. break;
  2261. case CBuilding::BUILD_AUTO :
  2262. case CBuilding::BUILD_SPECIAL:
  2263. COMPLAIN_RET("This building can not be constructed normally!");
  2264. case CBuilding::BUILD_GRAIL :
  2265. if(requestedBuilding->mode == CBuilding::BUILD_GRAIL) //needs grail
  2266. {
  2267. if(!t->visitingHero || !t->visitingHero->hasArt(ArtifactID::GRAIL))
  2268. COMPLAIN_RET("Cannot build this without grail!")
  2269. else
  2270. removeArtifact(ArtifactLocation(t->visitingHero, t->visitingHero->getArtPos(ArtifactID::GRAIL, false)));
  2271. }
  2272. break;
  2273. }
  2274. }
  2275. //Performs stuff that has to be done after new building is built
  2276. auto processBuiltStructure = [t, this](const BuildingID buildingID)
  2277. {
  2278. if(buildingID >= BuildingID::DWELL_FIRST) //dwelling
  2279. {
  2280. int level = (buildingID - BuildingID::DWELL_FIRST) % GameConstants::CREATURES_PER_TOWN;
  2281. int upgradeNumber = (buildingID - BuildingID::DWELL_FIRST) / GameConstants::CREATURES_PER_TOWN;
  2282. if (upgradeNumber >= t->town->creatures.at(level).size())
  2283. {
  2284. complain(boost::str(boost::format("Error ecountered when building dwelling (bid=%s):"
  2285. "no creature found (upgrade number %d, level %d!")
  2286. % buildingID % upgradeNumber % level));
  2287. return;
  2288. }
  2289. CCreature * crea = VLC->creh->creatures.at(t->town->creatures.at(level).at(upgradeNumber));
  2290. SetAvailableCreatures ssi;
  2291. ssi.tid = t->id;
  2292. ssi.creatures = t->creatures;
  2293. if (ssi.creatures[level].second.empty()) // first creature in a dwelling
  2294. ssi.creatures[level].first = crea->growth;
  2295. ssi.creatures[level].second.push_back(crea->idNumber);
  2296. sendAndApply(&ssi);
  2297. }
  2298. if ( t->subID == ETownType::DUNGEON && buildingID == BuildingID::PORTAL_OF_SUMMON )
  2299. {
  2300. setPortalDwelling(t);
  2301. }
  2302. if(buildingID <= BuildingID::MAGES_GUILD_5) //it's mage guild
  2303. {
  2304. if(t->visitingHero)
  2305. giveSpells(t,t->visitingHero);
  2306. if(t->garrisonHero)
  2307. giveSpells(t,t->garrisonHero);
  2308. }
  2309. };
  2310. //Checks if all requirements will be met with expected building list "buildingsThatWillBe"
  2311. auto areRequirementsFullfilled = [&](const BuildingID & buildID)
  2312. {
  2313. return buildingsThatWillBe.count(buildID);
  2314. };
  2315. //Init the vectors
  2316. for(auto & build : t->town->buildings)
  2317. {
  2318. if(t->hasBuilt(build.first))
  2319. buildingsThatWillBe.insert(build.first);
  2320. else
  2321. {
  2322. if(build.second->mode == CBuilding::BUILD_AUTO) //not built auto building
  2323. remainingAutoBuildings.push_back(build.second);
  2324. }
  2325. }
  2326. //Prepare structure (list of building ids will be filled later)
  2327. NewStructures ns;
  2328. ns.tid = tid;
  2329. ns.builded = force ? t->builded : (t->builded+1);
  2330. std::queue<const CBuilding*> buildingsToAdd;
  2331. buildingsToAdd.push(requestedBuilding);
  2332. while(!buildingsToAdd.empty())
  2333. {
  2334. auto b = buildingsToAdd.front();
  2335. buildingsToAdd.pop();
  2336. ns.bid.insert(b->bid);
  2337. buildingsThatWillBe.insert(b->bid);
  2338. remainingAutoBuildings -= b;
  2339. for(auto autoBuilding : remainingAutoBuildings)
  2340. {
  2341. if (autoBuilding->requirements.test(areRequirementsFullfilled))
  2342. buildingsToAdd.push(autoBuilding);
  2343. }
  2344. }
  2345. //Other post-built events
  2346. for(auto builtID : ns.bid)
  2347. processBuiltStructure(builtID);
  2348. //Take cost
  2349. if (!force)
  2350. {
  2351. SetResources sr;
  2352. sr.player = t->tempOwner;
  2353. sr.res = gs->getPlayer(t->tempOwner)->resources - requestedBuilding->resources;
  2354. sendAndApply(&sr);
  2355. }
  2356. //We know what has been built, appluy changes. Do this as final step to properly update town window
  2357. sendAndApply(&ns);
  2358. // now when everything is built - reveal tiles for lookout tower
  2359. FoWChange fw;
  2360. fw.player = t->tempOwner;
  2361. fw.mode = 1;
  2362. getTilesInRange(fw.tiles, t->getSightCenter(), t->getSightRadious(), t->tempOwner, 1);
  2363. sendAndApply(&fw);
  2364. if(t->visitingHero)
  2365. vistiCastleObjects (t, t->visitingHero);
  2366. if(t->garrisonHero)
  2367. vistiCastleObjects (t, t->garrisonHero);
  2368. checkVictoryLossConditionsForPlayer(t->tempOwner);
  2369. return true;
  2370. }
  2371. bool CGameHandler::razeStructure (ObjectInstanceID tid, BuildingID bid)
  2372. {
  2373. ///incomplete, simply erases target building
  2374. const CGTownInstance * t = getTown(tid);
  2375. if (!vstd::contains(t->builtBuildings, bid))
  2376. return false;
  2377. RazeStructures rs;
  2378. rs.tid = tid;
  2379. rs.bid.insert(bid);
  2380. rs.destroyed = t->destroyed + 1;
  2381. sendAndApply(&rs);
  2382. //TODO: Remove dwellers
  2383. // if (t->subID == 4 && bid == 17) //Veil of Darkness
  2384. // {
  2385. // RemoveBonus rb(RemoveBonus::TOWN);
  2386. // rb.whoID = t->id;
  2387. // rb.source = Bonus::TOWN_STRUCTURE;
  2388. // rb.id = 17;
  2389. // sendAndApply(&rb);
  2390. // }
  2391. return true;
  2392. }
  2393. void CGameHandler::sendMessageToAll( const std::string &message )
  2394. {
  2395. SystemMessage sm;
  2396. sm.text = message;
  2397. sendToAllClients(&sm);
  2398. }
  2399. bool CGameHandler::recruitCreatures(ObjectInstanceID objid, ObjectInstanceID dstid, CreatureID crid, ui32 cram, si32 fromLvl )
  2400. {
  2401. const CGDwelling *dw = static_cast<const CGDwelling*>(gs->getObj(objid));
  2402. const CArmedInstance *dst = nullptr;
  2403. const CCreature *c = VLC->creh->creatures.at(crid);
  2404. bool warMachine = c->hasBonusOfType(Bonus::SIEGE_WEAPON);
  2405. //TODO: test for owning
  2406. //TODO: check if dst can recruit objects (e.g. hero is actually visiting object, town and source are same, etc)
  2407. dst = dynamic_cast<const CArmedInstance*>(getObj(dstid));
  2408. assert(dw && dst);
  2409. //verify
  2410. bool found = false;
  2411. int level = 0;
  2412. for(; level < dw->creatures.size(); level++) //iterate through all levels
  2413. {
  2414. if ( (fromLvl != -1) && ( level !=fromLvl ) )
  2415. continue;
  2416. const auto &cur = dw->creatures.at(level); //current level info <amount, list of cr. ids>
  2417. int i = 0;
  2418. for(; i < cur.second.size(); i++) //look for crid among available creatures list on current level
  2419. if(cur.second.at(i) == crid)
  2420. break;
  2421. if(i < cur.second.size())
  2422. {
  2423. found = true;
  2424. cram = std::min(cram, cur.first); //reduce recruited amount up to available amount
  2425. break;
  2426. }
  2427. }
  2428. SlotID slot = dst->getSlotFor(crid);
  2429. if( (!found && complain("Cannot recruit: no such creatures!"))
  2430. || (cram > VLC->creh->creatures.at(crid)->maxAmount(gs->getPlayer(dst->tempOwner)->resources) && complain("Cannot recruit: lack of resources!"))
  2431. || (cram<=0 && complain("Cannot recruit: cram <= 0!"))
  2432. || (!slot.validSlot() && !warMachine && complain("Cannot recruit: no available slot!")))
  2433. {
  2434. return false;
  2435. }
  2436. //recruit
  2437. SetResources sr;
  2438. sr.player = dst->tempOwner;
  2439. sr.res = gs->getPlayer(dst->tempOwner)->resources - (c->cost * cram);
  2440. SetAvailableCreatures sac;
  2441. sac.tid = objid;
  2442. sac.creatures = dw->creatures;
  2443. sac.creatures[level].first -= cram;
  2444. sendAndApply(&sr);
  2445. sendAndApply(&sac);
  2446. if(warMachine)
  2447. {
  2448. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance*>(dst);
  2449. if(!h)
  2450. COMPLAIN_RET("Only hero can buy war machines");
  2451. switch(crid)
  2452. {
  2453. case CreatureID::BALLISTA:
  2454. giveHeroNewArtifact(h, VLC->arth->artifacts[ArtifactID::BALLISTA], ArtifactPosition::MACH1);
  2455. break;
  2456. case CreatureID::FIRST_AID_TENT:
  2457. giveHeroNewArtifact(h, VLC->arth->artifacts[ArtifactID::FIRST_AID_TENT], ArtifactPosition::MACH3);
  2458. break;
  2459. case CreatureID::AMMO_CART:
  2460. giveHeroNewArtifact(h, VLC->arth->artifacts[ArtifactID::AMMO_CART], ArtifactPosition::MACH2);
  2461. break;
  2462. default:
  2463. complain("This war machine cannot be recruited!");
  2464. return false;
  2465. }
  2466. }
  2467. else
  2468. {
  2469. addToSlot(StackLocation(dst, slot), c, cram);
  2470. }
  2471. return true;
  2472. }
  2473. bool CGameHandler::upgradeCreature( ObjectInstanceID objid, SlotID pos, CreatureID upgID )
  2474. {
  2475. CArmedInstance *obj = static_cast<CArmedInstance*>(gs->getObjInstance(objid));
  2476. if (!obj->hasStackAtSlot(pos))
  2477. {
  2478. COMPLAIN_RET("Cannot upgrade, no stack at slot " + boost::to_string(pos));
  2479. }
  2480. UpgradeInfo ui = gs->getUpgradeInfo(obj->getStack(pos));
  2481. PlayerColor player = obj->tempOwner;
  2482. const PlayerState *p = getPlayer(player);
  2483. int crQuantity = obj->stacks.at(pos)->count;
  2484. int newIDpos= vstd::find_pos(ui.newID, upgID);//get position of new id in UpgradeInfo
  2485. //check if upgrade is possible
  2486. if( (ui.oldID<0 || newIDpos == -1 ) && complain("That upgrade is not possible!"))
  2487. {
  2488. return false;
  2489. }
  2490. TResources totalCost = ui.cost.at(newIDpos) * crQuantity;
  2491. //check if player has enough resources
  2492. if(!p->resources.canAfford(totalCost))
  2493. COMPLAIN_RET("Cannot upgrade, not enough resources!");
  2494. //take resources
  2495. SetResources sr;
  2496. sr.player = player;
  2497. sr.res = p->resources - totalCost;
  2498. sendAndApply(&sr);
  2499. //upgrade creature
  2500. changeStackType(StackLocation(obj, pos), VLC->creh->creatures.at(upgID));
  2501. return true;
  2502. }
  2503. bool CGameHandler::changeStackType(const StackLocation &sl, const CCreature *c)
  2504. {
  2505. if(!sl.army->hasStackAtSlot(sl.slot))
  2506. COMPLAIN_RET("Cannot find a stack to change type");
  2507. SetStackType sst;
  2508. sst.sl = sl;
  2509. sst.type = c;
  2510. sendAndApply(&sst);
  2511. return true;
  2512. }
  2513. void CGameHandler::moveArmy(const CArmedInstance *src, const CArmedInstance *dst, bool allowMerging)
  2514. {
  2515. assert(src->canBeMergedWith(*dst, allowMerging));
  2516. while(src->stacksCount())//while there are unmoved creatures
  2517. {
  2518. auto i = src->Slots().begin(); //iterator to stack to move
  2519. StackLocation sl(src, i->first); //location of stack to move
  2520. SlotID pos = dst->getSlotFor(i->second->type);
  2521. if(!pos.validSlot())
  2522. {
  2523. //try to merge two other stacks to make place
  2524. std::pair<SlotID, SlotID> toMerge;
  2525. if(dst->mergableStacks(toMerge, i->first) && allowMerging)
  2526. {
  2527. moveStack(StackLocation(dst, toMerge.first), StackLocation(dst, toMerge.second)); //merge toMerge.first into toMerge.second
  2528. assert(!dst->hasStackAtSlot(toMerge.first)); //we have now a new free slot
  2529. moveStack(sl, StackLocation(dst, toMerge.first)); //move stack to freed slot
  2530. }
  2531. else
  2532. {
  2533. complain("Unexpected failure during an attempt to move army from " + src->nodeName() + " to " + dst->nodeName() + "!");
  2534. return;
  2535. }
  2536. }
  2537. else
  2538. {
  2539. moveStack(sl, StackLocation(dst, pos));
  2540. }
  2541. }
  2542. }
  2543. bool CGameHandler::garrisonSwap( ObjectInstanceID tid )
  2544. {
  2545. CGTownInstance *town = gs->getTown(tid);
  2546. if(!town->garrisonHero && town->visitingHero) //visiting => garrison, merge armies: town army => hero army
  2547. {
  2548. if(!town->visitingHero->canBeMergedWith(*town))
  2549. {
  2550. complain("Cannot make garrison swap, not enough free slots!");
  2551. return false;
  2552. }
  2553. moveArmy(town, town->visitingHero, true);
  2554. SetHeroesInTown intown;
  2555. intown.tid = tid;
  2556. intown.visiting = ObjectInstanceID();
  2557. intown.garrison = town->visitingHero->id;
  2558. sendAndApply(&intown);
  2559. return true;
  2560. }
  2561. else if (town->garrisonHero && !town->visitingHero) //move hero out of the garrison
  2562. {
  2563. //check if moving hero out of town will break 8 wandering heroes limit
  2564. if(getHeroCount(town->garrisonHero->tempOwner,false) >= 8)
  2565. {
  2566. complain("Cannot move hero out of the garrison, there are already 8 wandering heroes!");
  2567. return false;
  2568. }
  2569. SetHeroesInTown intown;
  2570. intown.tid = tid;
  2571. intown.garrison = ObjectInstanceID();
  2572. intown.visiting = town->garrisonHero->id;
  2573. sendAndApply(&intown);
  2574. return true;
  2575. }
  2576. else if(!!town->garrisonHero && town->visitingHero) //swap visiting and garrison hero
  2577. {
  2578. SetHeroesInTown intown;
  2579. intown.tid = tid;
  2580. intown.garrison = town->visitingHero->id;
  2581. intown.visiting = town->garrisonHero->id;
  2582. sendAndApply(&intown);
  2583. return true;
  2584. }
  2585. else
  2586. {
  2587. complain("Cannot swap garrison hero!");
  2588. return false;
  2589. }
  2590. }
  2591. // With the amount of changes done to the function, it's more like transferArtifacts.
  2592. // Function moves artifact from src to dst. If dst is not a backpack and is already occupied, old dst art goes to backpack and is replaced.
  2593. bool CGameHandler::moveArtifact(const ArtifactLocation &al1, const ArtifactLocation &al2)
  2594. {
  2595. ArtifactLocation src = al1, dst = al2;
  2596. const PlayerColor srcPlayer = src.owningPlayer(), dstPlayer = dst.owningPlayer();
  2597. const CArmedInstance *srcObj = src.relatedObj(), *dstObj = dst.relatedObj();
  2598. // Make sure exchange is even possible between the two heroes.
  2599. if(!isAllowedExchange(srcObj->id, dstObj->id))
  2600. COMPLAIN_RET("That heroes cannot make any exchange!");
  2601. const CArtifactInstance *srcArtifact = src.getArt();
  2602. const CArtifactInstance *destArtifact = dst.getArt();
  2603. if (srcArtifact == nullptr)
  2604. COMPLAIN_RET("No artifact to move!");
  2605. if (destArtifact && srcPlayer != dstPlayer)
  2606. COMPLAIN_RET("Can't touch artifact on hero of another player!");
  2607. // Check if src/dest slots are appropriate for the artifacts exchanged.
  2608. // Moving to the backpack is always allowed.
  2609. if ((!srcArtifact || dst.slot < GameConstants::BACKPACK_START)
  2610. && srcArtifact && !srcArtifact->canBePutAt(dst, true))
  2611. COMPLAIN_RET("Cannot move artifact!");
  2612. if ((srcArtifact && srcArtifact->artType->id == ArtifactID::ART_LOCK) || (destArtifact && destArtifact->artType->id == ArtifactID::ART_LOCK))
  2613. COMPLAIN_RET("Cannot move artifact locks.");
  2614. if (dst.slot >= GameConstants::BACKPACK_START && srcArtifact->artType->isBig())
  2615. COMPLAIN_RET("Cannot put big artifacts in backpack!");
  2616. if (src.slot == ArtifactPosition::MACH4 || dst.slot == ArtifactPosition::MACH4)
  2617. COMPLAIN_RET("Cannot move catapult!");
  2618. if(dst.slot >= GameConstants::BACKPACK_START)
  2619. vstd::amin(dst.slot, ArtifactPosition(GameConstants::BACKPACK_START + dst.getHolderArtSet()->artifactsInBackpack.size()));
  2620. if (src.slot == dst.slot && src.artHolder == dst.artHolder)
  2621. COMPLAIN_RET("Won't move artifact: Dest same as source!");
  2622. if(dst.slot < GameConstants::BACKPACK_START && destArtifact) //moving art to another slot
  2623. {
  2624. //old artifact must be removed first
  2625. moveArtifact(dst, ArtifactLocation(dst.artHolder, ArtifactPosition(
  2626. dst.getHolderArtSet()->artifactsInBackpack.size() + GameConstants::BACKPACK_START)));
  2627. }
  2628. MoveArtifact ma;
  2629. ma.src = src;
  2630. ma.dst = dst;
  2631. sendAndApply(&ma);
  2632. return true;
  2633. }
  2634. /**
  2635. * Assembles or disassembles a combination artifact.
  2636. * @param heroID ID of hero holding the artifact(s).
  2637. * @param artifactSlot The worn slot ID of the combination- or constituent artifact.
  2638. * @param assemble True for assembly operation, false for disassembly.
  2639. * @param assembleTo If assemble is true, this represents the artifact ID of the combination
  2640. * artifact to assemble to. Otherwise it's not used.
  2641. */
  2642. bool CGameHandler::assembleArtifacts (ObjectInstanceID heroID, ArtifactPosition artifactSlot, bool assemble, ArtifactID assembleTo)
  2643. {
  2644. CGHeroInstance *hero = gs->getHero(heroID);
  2645. const CArtifactInstance *destArtifact = hero->getArt(artifactSlot);
  2646. if(!destArtifact)
  2647. COMPLAIN_RET("assembleArtifacts: there is no such artifact instance!");
  2648. if(assemble)
  2649. {
  2650. CArtifact *combinedArt = VLC->arth->artifacts[assembleTo];
  2651. if(!combinedArt->constituents)
  2652. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to assemble is not a combined artifacts!");
  2653. if(!vstd::contains(destArtifact->assemblyPossibilities(hero), combinedArt))
  2654. COMPLAIN_RET("assembleArtifacts: It's impossible to assemble requested artifact!");
  2655. AssembledArtifact aa;
  2656. aa.al = ArtifactLocation(hero, artifactSlot);
  2657. aa.builtArt = combinedArt;
  2658. sendAndApply(&aa);
  2659. }
  2660. else
  2661. {
  2662. if(!destArtifact->artType->constituents)
  2663. COMPLAIN_RET("assembleArtifacts: Artifact being attempted to disassemble is not a combined artifact!");
  2664. DisassembledArtifact da;
  2665. da.al = ArtifactLocation(hero, artifactSlot);
  2666. sendAndApply(&da);
  2667. }
  2668. return true;
  2669. }
  2670. bool CGameHandler::buyArtifact( ObjectInstanceID hid, ArtifactID aid )
  2671. {
  2672. CGHeroInstance *hero = gs->getHero(hid);
  2673. CGTownInstance *town = hero->visitedTown;
  2674. if(aid==ArtifactID::SPELLBOOK)
  2675. {
  2676. if((!town->hasBuilt(BuildingID::MAGES_GUILD_1) && complain("Cannot buy a spellbook, no mage guild in the town!"))
  2677. || (getResource(hero->getOwner(), Res::GOLD) < GameConstants::SPELLBOOK_GOLD_COST && complain("Cannot buy a spellbook, not enough gold!") )
  2678. || (hero->getArt(ArtifactPosition::SPELLBOOK) && complain("Cannot buy a spellbook, hero already has a one!"))
  2679. )
  2680. return false;
  2681. giveResource(hero->getOwner(),Res::GOLD,-GameConstants::SPELLBOOK_GOLD_COST);
  2682. giveHeroNewArtifact(hero, VLC->arth->artifacts[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK);
  2683. assert(hero->getArt(ArtifactPosition::SPELLBOOK));
  2684. giveSpells(town,hero);
  2685. return true;
  2686. }
  2687. else if(aid < 7 && aid > 3) //war machine
  2688. {
  2689. int price = VLC->arth->artifacts[aid]->price;
  2690. if(( hero->getArt(ArtifactPosition(9+aid)) && complain("Hero already has this machine!"))
  2691. || (gs->getPlayer(hero->getOwner())->resources.at(Res::GOLD) < price && complain("Not enough gold!")))
  2692. {
  2693. return false;
  2694. }
  2695. if ((town->hasBuilt(BuildingID::BLACKSMITH) && town->town->warMachine == aid )
  2696. || ((town->hasBuilt(BuildingID::BALLISTA_YARD, ETownType::STRONGHOLD)) && aid == ArtifactID::BALLISTA))
  2697. {
  2698. giveResource(hero->getOwner(),Res::GOLD,-price);
  2699. giveHeroNewArtifact(hero, VLC->arth->artifacts[aid], ArtifactPosition(9+aid));
  2700. return true;
  2701. }
  2702. else
  2703. COMPLAIN_RET("This machine is unavailable here!");
  2704. }
  2705. return false;
  2706. }
  2707. bool CGameHandler::buyArtifact(const IMarket *m, const CGHeroInstance *h, Res::ERes rid, ArtifactID aid)
  2708. {
  2709. if(!vstd::contains(m->availableItemsIds(EMarketMode::RESOURCE_ARTIFACT), aid))
  2710. COMPLAIN_RET("That artifact is unavailable!");
  2711. int b1, b2;
  2712. m->getOffer(rid, aid, b1, b2, EMarketMode::RESOURCE_ARTIFACT);
  2713. if(getResource(h->tempOwner, rid) < b1)
  2714. COMPLAIN_RET("You can't afford to buy this artifact!");
  2715. SetResource sr;
  2716. sr.player = h->tempOwner;
  2717. sr.resid = rid;
  2718. sr.val = getResource(h->tempOwner, rid) - b1;
  2719. sendAndApply(&sr);
  2720. SetAvailableArtifacts saa;
  2721. if(m->o->ID == Obj::TOWN)
  2722. {
  2723. saa.id = -1;
  2724. saa.arts = CGTownInstance::merchantArtifacts;
  2725. }
  2726. else if(const CGBlackMarket *bm = dynamic_cast<const CGBlackMarket *>(m->o)) //black market
  2727. {
  2728. saa.id = bm->id.getNum();
  2729. saa.arts = bm->artifacts;
  2730. }
  2731. else
  2732. COMPLAIN_RET("Wrong marktet...");
  2733. bool found = false;
  2734. for(const CArtifact *&art : saa.arts)
  2735. {
  2736. if(art && art->id == aid)
  2737. {
  2738. art = nullptr;
  2739. found = true;
  2740. break;
  2741. }
  2742. }
  2743. if(!found)
  2744. COMPLAIN_RET("Cannot find selected artifact on the list");
  2745. sendAndApply(&saa);
  2746. giveHeroNewArtifact(h, VLC->arth->artifacts[aid], ArtifactPosition::FIRST_AVAILABLE);
  2747. return true;
  2748. }
  2749. bool CGameHandler::sellArtifact( const IMarket *m, const CGHeroInstance *h, ArtifactInstanceID aid, Res::ERes rid )
  2750. {
  2751. const CArtifactInstance *art = h->getArtByInstanceId(aid);
  2752. if(!art)
  2753. COMPLAIN_RET("There is no artifact to sell!");
  2754. if(!art->artType->isTradable())
  2755. COMPLAIN_RET("Cannot sell a war machine or spellbook!");
  2756. int resVal = 0, dump = 1;
  2757. m->getOffer(art->artType->id, rid, dump, resVal, EMarketMode::ARTIFACT_RESOURCE);
  2758. removeArtifact(ArtifactLocation(h, h->getArtPos(art)));
  2759. giveResource(h->tempOwner, rid, resVal);
  2760. return true;
  2761. }
  2762. //void CGameHandler::lootArtifacts (TArtHolder source, TArtHolder dest, std::vector<ui32> &arts)
  2763. //{
  2764. // //const CGHeroInstance * h1 = dynamic_cast<CGHeroInstance *> source;
  2765. // //auto s = boost::apply_visitor(GetArtifactSetPtr(), source);
  2766. // {
  2767. // }
  2768. //}
  2769. bool CGameHandler::buySecSkill( const IMarket *m, const CGHeroInstance *h, SecondarySkill skill)
  2770. {
  2771. if (!h)
  2772. COMPLAIN_RET("You need hero to buy a skill!");
  2773. if (h->getSecSkillLevel(SecondarySkill(skill)))
  2774. COMPLAIN_RET("Hero already know this skill");
  2775. if (!h->canLearnSkill())
  2776. COMPLAIN_RET("Hero can't learn any more skills");
  2777. if (h->type->heroClass->secSkillProbability.at(skill)==0)//can't learn this skill (like necromancy for most of non-necros)
  2778. COMPLAIN_RET("The hero can't learn this skill!");
  2779. if(!vstd::contains(m->availableItemsIds(EMarketMode::RESOURCE_SKILL), skill))
  2780. COMPLAIN_RET("That skill is unavailable!");
  2781. if(getResource(h->tempOwner, Res::GOLD) < 2000)//TODO: remove hardcoded resource\summ?
  2782. COMPLAIN_RET("You can't afford to buy this skill");
  2783. SetResource sr;
  2784. sr.player = h->tempOwner;
  2785. sr.resid = Res::GOLD;
  2786. sr.val = getResource(h->tempOwner, Res::GOLD) - 2000;
  2787. sendAndApply(&sr);
  2788. changeSecSkill(h, skill, 1, true);
  2789. return true;
  2790. }
  2791. bool CGameHandler::tradeResources(const IMarket *market, ui32 val, PlayerColor player, ui32 id1, ui32 id2)
  2792. {
  2793. int r1 = gs->getPlayer(player)->resources.at(id1),
  2794. r2 = gs->getPlayer(player)->resources.at(id2);
  2795. vstd::amin(val, r1); //can't trade more resources than have
  2796. int b1, b2; //base quantities for trade
  2797. market->getOffer(id1, id2, b1, b2, EMarketMode::RESOURCE_RESOURCE);
  2798. int units = val / b1; //how many base quantities we trade
  2799. if(val%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
  2800. {
  2801. //TODO: complain?
  2802. assert(0);
  2803. }
  2804. SetResource sr;
  2805. sr.player = player;
  2806. sr.resid = static_cast<Res::ERes>(id1);
  2807. sr.val = r1 - b1 * units;
  2808. sendAndApply(&sr);
  2809. sr.resid = static_cast<Res::ERes>(id2);
  2810. sr.val = r2 + b2 * units;
  2811. sendAndApply(&sr);
  2812. return true;
  2813. }
  2814. bool CGameHandler::sellCreatures(ui32 count, const IMarket *market, const CGHeroInstance * hero, SlotID slot, Res::ERes resourceID)
  2815. {
  2816. if(!vstd::contains(hero->Slots(), slot))
  2817. COMPLAIN_RET("Hero doesn't have any creature in that slot!");
  2818. const CStackInstance &s = hero->getStack(slot);
  2819. if( s.count < count //can't sell more creatures than have
  2820. || (hero->stacksCount() == 1 && hero->needsLastStack() && s.count == count)) //can't sell last stack
  2821. {
  2822. COMPLAIN_RET("Not enough creatures in army!");
  2823. }
  2824. int b1, b2; //base quantities for trade
  2825. market->getOffer(s.type->idNumber, resourceID, b1, b2, EMarketMode::CREATURE_RESOURCE);
  2826. int units = count / b1; //how many base quantities we trade
  2827. if(count%b1) //all offered units of resource should be used, if not -> somewhere in calculations must be an error
  2828. {
  2829. //TODO: complain?
  2830. assert(0);
  2831. }
  2832. changeStackCount(StackLocation(hero, slot), -count);
  2833. SetResource sr;
  2834. sr.player = hero->tempOwner;
  2835. sr.resid = resourceID;
  2836. sr.val = getResource(hero->tempOwner, resourceID) + b2 * units;
  2837. sendAndApply(&sr);
  2838. return true;
  2839. }
  2840. bool CGameHandler::transformInUndead(const IMarket *market, const CGHeroInstance * hero, SlotID slot)
  2841. {
  2842. const CArmedInstance *army = nullptr;
  2843. if (hero)
  2844. army = hero;
  2845. else
  2846. army = dynamic_cast<const CGTownInstance *>(market->o);
  2847. if (!army)
  2848. COMPLAIN_RET("Incorrect call to transform in undead!");
  2849. if(!army->hasStackAtSlot(slot))
  2850. COMPLAIN_RET("Army doesn't have any creature in that slot!");
  2851. const CStackInstance &s = army->getStack(slot);
  2852. //resulting creature - bone dragons or skeletons
  2853. CreatureID resCreature = CreatureID::SKELETON;
  2854. if(s.hasBonusOfType(Bonus::DRAGON_NATURE)
  2855. || (s.getCreatureID() == CreatureID::HYDRA)
  2856. || (s.getCreatureID() == CreatureID::CHAOS_HYDRA))
  2857. resCreature = CreatureID::BONE_DRAGON;
  2858. changeStackType(StackLocation(army, slot), resCreature.toCreature());
  2859. return true;
  2860. }
  2861. bool CGameHandler::sendResources(ui32 val, PlayerColor player, Res::ERes r1, PlayerColor r2)
  2862. {
  2863. const PlayerState *p2 = gs->getPlayer(r2, false);
  2864. if(!p2 || p2->status != EPlayerStatus::INGAME)
  2865. {
  2866. complain("Dest player must be in game!");
  2867. return false;
  2868. }
  2869. si32 curRes1 = gs->getPlayer(player)->resources.at(r1),
  2870. curRes2 = gs->getPlayer(r2)->resources.at(r1);
  2871. val = std::min(si32(val),curRes1);
  2872. SetResource sr;
  2873. sr.player = player;
  2874. sr.resid = r1;
  2875. sr.val = curRes1 - val;
  2876. sendAndApply(&sr);
  2877. sr.player = r2;
  2878. sr.val = curRes2 + val;
  2879. sendAndApply(&sr);
  2880. return true;
  2881. }
  2882. bool CGameHandler::setFormation( ObjectInstanceID hid, ui8 formation )
  2883. {
  2884. gs->getHero(hid)-> formation = formation;
  2885. return true;
  2886. }
  2887. bool CGameHandler::hireHero(const CGObjectInstance *obj, ui8 hid, PlayerColor player)
  2888. {
  2889. const PlayerState *p = gs->getPlayer(player);
  2890. const CGTownInstance *t = gs->getTown(obj->id);
  2891. //common preconditions
  2892. // if( (p->resources.at(Res::GOLD)<GOLD_NEEDED && complain("Not enough gold for buying hero!"))
  2893. // || (getHeroCount(player, false) >= GameConstants::MAX_HEROES_PER_PLAYER && complain("Cannot hire hero, only 8 wandering heroes are allowed!")))
  2894. if((p->resources.at(Res::GOLD) < GameConstants::HERO_GOLD_COST && complain("Not enough gold for buying hero!"))
  2895. || ((!t) && (getHeroCount(player, false) >= VLC->modh->settings.MAX_HEROES_ON_MAP_PER_PLAYER && complain("Cannot hire hero, too many wandering heroes already!")))
  2896. || ((t) && (getHeroCount(player, true) >= VLC->modh->settings.MAX_HEROES_AVAILABLE_PER_PLAYER && complain("Cannot hire hero, too many heroes garrizoned and wandering already!"))) )
  2897. {
  2898. return false;
  2899. }
  2900. if(t) //tavern in town
  2901. {
  2902. if((!t->hasBuilt(BuildingID::TAVERN) && complain("No tavern!"))
  2903. || (t->visitingHero && complain("There is visiting hero - no place!")))
  2904. {
  2905. return false;
  2906. }
  2907. }
  2908. else if(obj->ID == Obj::TAVERN)
  2909. {
  2910. if(getTile(obj->visitablePos())->visitableObjects.back() != obj && complain("Tavern entry must be unoccupied!"))
  2911. {
  2912. return false;
  2913. }
  2914. }
  2915. const CGHeroInstance *nh = p->availableHeroes.at(hid);
  2916. if (!nh)
  2917. {
  2918. complain ("Hero is not available for hiring!");
  2919. return false;
  2920. }
  2921. HeroRecruited hr;
  2922. hr.tid = obj->id;
  2923. hr.hid = nh->subID;
  2924. hr.player = player;
  2925. hr.tile = obj->visitablePos() + nh->getVisitableOffset();
  2926. sendAndApply(&hr);
  2927. std::map<ui32, ConstTransitivePtr<CGHeroInstance> > pool = gs->unusedHeroesFromPool();
  2928. const CGHeroInstance *theOtherHero = p->availableHeroes.at(!hid);
  2929. const CGHeroInstance *newHero = nullptr;
  2930. if (theOtherHero) //on XXL maps all heroes can be imprisoned :(
  2931. {
  2932. newHero = gs->hpool.pickHeroFor(false, player, getNativeTown(player), pool, gs->getRandomGenerator(), theOtherHero->type->heroClass);
  2933. }
  2934. SetAvailableHeroes sah;
  2935. sah.player = player;
  2936. if(newHero)
  2937. {
  2938. sah.hid[hid] = newHero->subID;
  2939. sah.army[hid].clear();
  2940. sah.army[hid].setCreature(SlotID(0), newHero->type->initialArmy[0].creature, 1);
  2941. }
  2942. else
  2943. {
  2944. sah.hid[hid] = -1;
  2945. }
  2946. sah.hid[!hid] = theOtherHero ? theOtherHero->subID : -1;
  2947. sendAndApply(&sah);
  2948. SetResource sr;
  2949. sr.player = player;
  2950. sr.resid = Res::GOLD;
  2951. sr.val = p->resources.at(Res::GOLD) - GameConstants::HERO_GOLD_COST;
  2952. sendAndApply(&sr);
  2953. if(t)
  2954. {
  2955. vistiCastleObjects (t, nh);
  2956. giveSpells (t,nh);
  2957. }
  2958. return true;
  2959. }
  2960. bool CGameHandler::queryReply(QueryID qid, ui32 answer, PlayerColor player)
  2961. {
  2962. boost::unique_lock<boost::recursive_mutex> lock(gsm);
  2963. logGlobal->traceStream() << boost::format("Player %s attempts answering query %d with answer %d") % player % qid % answer;
  2964. auto topQuery = queries.topQuery(player);
  2965. COMPLAIN_RET_FALSE_IF(!topQuery, "This player doesn't have any queries!");
  2966. COMPLAIN_RET_FALSE_IF(topQuery->queryID != qid, "This player top query has different ID!");
  2967. COMPLAIN_RET_FALSE_IF(!topQuery->endsByPlayerAnswer(), "This query cannot be ended by player's answer!");
  2968. if(auto dialogQuery = std::dynamic_pointer_cast<CDialogQuery>(topQuery))
  2969. dialogQuery->answer = answer;
  2970. queries.popQuery(topQuery);
  2971. return true;
  2972. }
  2973. static EndAction end_action;
  2974. bool CGameHandler::makeBattleAction( BattleAction &ba )
  2975. {
  2976. bool ok = true;
  2977. const CStack *stack = battleGetStackByID(ba.stackNumber); //may be nullptr if action is not about stack
  2978. const CStack *destinationStack = ba.actionType == Battle::WALK_AND_ATTACK ? gs->curB->battleGetStackByPos(ba.additionalInfo)
  2979. : ba.actionType == Battle::SHOOT ? gs->curB->battleGetStackByPos(ba.destinationTile)
  2980. : nullptr;
  2981. const bool isAboutActiveStack = stack && (stack == battleActiveStack());
  2982. logGlobal->traceStream() << boost::format(
  2983. "Making action: type=%d; side=%d; stack=%s; dst=%s; additionalInfo=%d; stackAtDst=%s")
  2984. % ba.actionType % (int)ba.side % (stack ? stack->getName() : std::string("none"))
  2985. % ba.destinationTile % ba.additionalInfo % (destinationStack ? destinationStack->getName() : std::string("none"));
  2986. switch(ba.actionType)
  2987. {
  2988. case Battle::WALK: //walk
  2989. case Battle::DEFEND: //defend
  2990. case Battle::WAIT: //wait
  2991. case Battle::WALK_AND_ATTACK: //walk or attack
  2992. case Battle::SHOOT: //shoot
  2993. case Battle::CATAPULT: //catapult
  2994. case Battle::STACK_HEAL: //healing with First Aid Tent
  2995. case Battle::DAEMON_SUMMONING:
  2996. case Battle::MONSTER_SPELL:
  2997. if(!stack)
  2998. {
  2999. complain("No such stack!");
  3000. return false;
  3001. }
  3002. if(!stack->alive())
  3003. {
  3004. complain("This stack is dead: " + stack->nodeName());
  3005. return false;
  3006. }
  3007. if(battleTacticDist())
  3008. {
  3009. if(stack && !stack->attackerOwned != battleGetTacticsSide())
  3010. {
  3011. complain("This is not a stack of side that has tactics!");
  3012. return false;
  3013. }
  3014. }
  3015. else if(!isAboutActiveStack)
  3016. {
  3017. complain("Action has to be about active stack!");
  3018. return false;
  3019. }
  3020. }
  3021. switch(ba.actionType)
  3022. {
  3023. case Battle::END_TACTIC_PHASE: //wait
  3024. case Battle::BAD_MORALE:
  3025. case Battle::NO_ACTION:
  3026. {
  3027. StartAction start_action(ba);
  3028. sendAndApply(&start_action);
  3029. sendAndApply(&end_action);
  3030. break;
  3031. }
  3032. case Battle::WALK:
  3033. {
  3034. StartAction start_action(ba);
  3035. sendAndApply(&start_action); //start movement
  3036. int walkedTiles = moveStack(ba.stackNumber,ba.destinationTile); //move
  3037. if(!walkedTiles)
  3038. complain("Stack failed movement!");
  3039. sendAndApply(&end_action);
  3040. break;
  3041. }
  3042. case Battle::DEFEND:
  3043. {
  3044. //defensive stance //TODO: remove this bonus when stack becomes active
  3045. SetStackEffect sse;
  3046. sse.effect.push_back( Bonus(Bonus::STACK_GETS_TURN, Bonus::PRIMARY_SKILL, Bonus::OTHER, 20, -1, PrimarySkill::DEFENSE, Bonus::PERCENT_TO_ALL) );
  3047. sse.effect.push_back( Bonus(Bonus::STACK_GETS_TURN, Bonus::PRIMARY_SKILL, Bonus::OTHER, gs->curB->battleGetStackByID(ba.stackNumber)->valOfBonuses(Bonus::DEFENSIVE_STANCE),
  3048. -1, PrimarySkill::DEFENSE, Bonus::ADDITIVE_VALUE));
  3049. sse.stacks.push_back(ba.stackNumber);
  3050. sendAndApply(&sse);
  3051. //don't break - we share code with next case
  3052. }
  3053. case Battle::WAIT:
  3054. {
  3055. StartAction start_action(ba);
  3056. sendAndApply(&start_action);
  3057. sendAndApply(&end_action);
  3058. break;
  3059. }
  3060. case Battle::RETREAT: //retreat/flee
  3061. {
  3062. if(!gs->curB->battleCanFlee(gs->curB->sides.at(ba.side).color))
  3063. complain("Cannot retreat!");
  3064. else
  3065. setBattleResult(BattleResult::ESCAPE, !ba.side); //surrendering side loses
  3066. break;
  3067. }
  3068. case Battle::SURRENDER:
  3069. {
  3070. PlayerColor player = gs->curB->sides.at(ba.side).color;
  3071. int cost = gs->curB->battleGetSurrenderCost(player);
  3072. if(cost < 0)
  3073. complain("Cannot surrender!");
  3074. else if(getResource(player, Res::GOLD) < cost)
  3075. complain("Not enough gold to surrender!");
  3076. else
  3077. {
  3078. giveResource(player, Res::GOLD, -cost);
  3079. setBattleResult(BattleResult::SURRENDER, !ba.side); //surrendering side loses
  3080. }
  3081. break;
  3082. }
  3083. case Battle::WALK_AND_ATTACK: //walk or attack
  3084. {
  3085. StartAction start_action(ba);
  3086. sendAndApply(&start_action); //start movement and attack
  3087. if(!stack || !destinationStack)
  3088. {
  3089. sendAndApply(&end_action);
  3090. break;
  3091. }
  3092. BattleHex startingPos = stack->position;
  3093. int distance = moveStack(ba.stackNumber, ba.destinationTile);
  3094. logGlobal->traceStream() << stack->nodeName() << " will attack " << destinationStack->nodeName();
  3095. if(stack->position != ba.destinationTile //we wasn't able to reach destination tile
  3096. && !(stack->doubleWide()
  3097. && ( stack->position == ba.destinationTile + (stack->attackerOwned ? +1 : -1 ) )
  3098. ) //nor occupy specified hex
  3099. )
  3100. {
  3101. std::string problem = "We cannot move this stack to its destination " + stack->getCreature()->namePl;
  3102. logGlobal->warnStream() << problem;
  3103. complain(problem);
  3104. ok = false;
  3105. sendAndApply(&end_action);
  3106. break;
  3107. }
  3108. if(destinationStack && stack && stack->ID == destinationStack->ID) //we should just move, it will be handled by following check
  3109. {
  3110. destinationStack = nullptr;
  3111. }
  3112. if(!destinationStack)
  3113. {
  3114. complain(boost::str(boost::format("walk and attack error: no stack at additionalInfo tile (%d)!\n") % ba.additionalInfo));
  3115. ok = false;
  3116. sendAndApply(&end_action);
  3117. break;
  3118. }
  3119. if( !CStack::isMeleeAttackPossible(stack, destinationStack) )
  3120. {
  3121. complain("Attack cannot be performed!");
  3122. sendAndApply(&end_action);
  3123. ok = false;
  3124. break;
  3125. }
  3126. //attack
  3127. int totalAttacks = 1 + stack->getBonuses(Selector::type (Bonus::ADDITIONAL_ATTACK),
  3128. (Selector::effectRange(Bonus::NO_LIMIT).Or(Selector::effectRange(Bonus::ONLY_MELEE_FIGHT))))->totalValue(); //all unspicified attacks + melee attacks
  3129. for (int i = 0; i < totalAttacks; ++i)
  3130. {
  3131. if (stack &&
  3132. stack->alive() && //move can cause death, eg. by walking into the moat
  3133. destinationStack->alive())
  3134. {
  3135. BattleAttack bat;
  3136. prepareAttack(bat, stack, destinationStack, (i ? 0 : distance), ba.additionalInfo); //no distance travelled on second attack
  3137. //prepareAttack(bat, stack, stackAtEnd, 0, ba.additionalInfo);
  3138. handleAttackBeforeCasting(bat); //only before first attack
  3139. sendAndApply(&bat);
  3140. handleAfterAttackCasting(bat);
  3141. }
  3142. //counterattack
  3143. if (destinationStack
  3144. && !stack->hasBonusOfType(Bonus::BLOCKS_RETALIATION)
  3145. && destinationStack->ableToRetaliate()
  3146. && stack->alive()) //attacker may have died (fire shield)
  3147. {
  3148. BattleAttack bat;
  3149. prepareAttack(bat, destinationStack, stack, 0, stack->position);
  3150. bat.flags |= BattleAttack::COUNTER;
  3151. sendAndApply(&bat);
  3152. handleAfterAttackCasting(bat);
  3153. }
  3154. }
  3155. //return
  3156. if(stack->hasBonusOfType(Bonus::RETURN_AFTER_STRIKE) && startingPos != stack->position && stack->alive())
  3157. {
  3158. moveStack(ba.stackNumber, startingPos);
  3159. //NOTE: curStack->ID == ba.stackNumber (rev 1431)
  3160. }
  3161. sendAndApply(&end_action);
  3162. break;
  3163. }
  3164. case Battle::SHOOT:
  3165. {
  3166. if( !gs->curB->battleCanShoot(stack, ba.destinationTile) )
  3167. {
  3168. complain("Cannot shoot!");
  3169. break;
  3170. }
  3171. StartAction start_action(ba);
  3172. sendAndApply(&start_action); //start shooting
  3173. {
  3174. BattleAttack bat;
  3175. bat.flags |= BattleAttack::SHOT;
  3176. prepareAttack(bat, stack, destinationStack, 0, ba.destinationTile);
  3177. handleAttackBeforeCasting(bat);
  3178. sendAndApply(&bat);
  3179. handleAfterAttackCasting(bat);
  3180. }
  3181. //second shot for ballista, only if hero has advanced artillery
  3182. const CGHeroInstance * attackingHero = gs->curB->battleGetFightingHero(ba.side);
  3183. if( destinationStack->alive()
  3184. && (stack->getCreature()->idNumber == CreatureID::BALLISTA)
  3185. && (attackingHero->getSecSkillLevel(SecondarySkill::ARTILLERY) >= SecSkillLevel::ADVANCED)
  3186. )
  3187. {
  3188. BattleAttack bat2;
  3189. bat2.flags |= BattleAttack::SHOT;
  3190. prepareAttack(bat2, stack, destinationStack, 0, ba.destinationTile);
  3191. sendAndApply(&bat2);
  3192. }
  3193. //allow more than one additional attack
  3194. int additionalAttacks = stack->getBonuses(Selector::type (Bonus::ADDITIONAL_ATTACK),
  3195. (Selector::effectRange(Bonus::NO_LIMIT).Or(Selector::effectRange(Bonus::ONLY_DISTANCE_FIGHT))))->totalValue();
  3196. for (int i = 0; i < additionalAttacks; ++i)
  3197. {
  3198. if(
  3199. stack->alive()
  3200. && destinationStack->alive()
  3201. && stack->shots
  3202. )
  3203. {
  3204. BattleAttack bat;
  3205. bat.flags |= BattleAttack::SHOT;
  3206. prepareAttack(bat, stack, destinationStack, 0, ba.destinationTile);
  3207. sendAndApply(&bat);
  3208. handleAfterAttackCasting(bat);
  3209. }
  3210. }
  3211. sendAndApply(&end_action);
  3212. break;
  3213. }
  3214. case Battle::CATAPULT:
  3215. {
  3216. auto getCatapultHitChance = [&](EWallPart::EWallPart part, const CHeroHandler::SBallisticsLevelInfo & sbi) -> int
  3217. {
  3218. switch(part)
  3219. {
  3220. case EWallPart::GATE:
  3221. return sbi.gate;
  3222. case EWallPart::KEEP:
  3223. return sbi.keep;
  3224. case EWallPart::BOTTOM_TOWER:
  3225. case EWallPart::UPPER_TOWER:
  3226. return sbi.tower;
  3227. case EWallPart::BOTTOM_WALL:
  3228. case EWallPart::BELOW_GATE:
  3229. case EWallPart::OVER_GATE:
  3230. case EWallPart::UPPER_WALL:
  3231. return sbi.wall;
  3232. default:
  3233. return 0;
  3234. }
  3235. };
  3236. StartAction start_action(ba);
  3237. sendAndApply(&start_action);
  3238. auto onExit = vstd::makeScopeGuard([&]{ sendAndApply(&end_action); }); //if we started than we have to finish
  3239. const CGHeroInstance * attackingHero = gs->curB->battleGetFightingHero(ba.side);
  3240. CHeroHandler::SBallisticsLevelInfo sbi = VLC->heroh->ballistics.at(attackingHero->getSecSkillLevel(SecondarySkill::BALLISTICS));
  3241. auto wallPart = gs->curB->battleHexToWallPart(ba.destinationTile);
  3242. if(!gs->curB->isWallPartPotentiallyAttackable(wallPart))
  3243. {
  3244. complain("catapult tried to attack non-catapultable hex!");
  3245. break;
  3246. }
  3247. //in successive iterations damage is dealt but not yet subtracted from wall's HPs
  3248. auto &currentHP = gs->curB->si.wallState;
  3249. if (currentHP.at(wallPart) == EWallState::DESTROYED || currentHP.at(wallPart) == EWallState::NONE)
  3250. {
  3251. complain("catapult tried to attack already destroyed wall part!");
  3252. break;
  3253. }
  3254. for(int g=0; g<sbi.shots; ++g)
  3255. {
  3256. bool hitSuccessfull = false;
  3257. auto attackedPart = wallPart;
  3258. do // catapult has chance to attack desired target. Othervice - attacks randomly
  3259. {
  3260. if(currentHP.at(attackedPart) != EWallState::DESTROYED && // this part can be hit
  3261. currentHP.at(attackedPart) != EWallState::NONE &&
  3262. gs->getRandomGenerator().nextInt(99) < getCatapultHitChance(attackedPart, sbi))//hit is successful
  3263. {
  3264. hitSuccessfull = true;
  3265. }
  3266. else // select new target
  3267. {
  3268. std::vector<EWallPart::EWallPart> allowedTargets;
  3269. for (size_t i=0; i< currentHP.size(); i++)
  3270. {
  3271. if (currentHP.at(i) != EWallState::DESTROYED &&
  3272. currentHP.at(i) != EWallState::NONE)
  3273. allowedTargets.push_back(EWallPart::EWallPart(i));
  3274. }
  3275. if (allowedTargets.empty())
  3276. break;
  3277. attackedPart = *RandomGeneratorUtil::nextItem(allowedTargets, gs->getRandomGenerator());
  3278. }
  3279. }
  3280. while (!hitSuccessfull);
  3281. if (!hitSuccessfull) // break triggered - no target to shoot at
  3282. break;
  3283. CatapultAttack ca; //package for clients
  3284. CatapultAttack::AttackInfo attack;
  3285. attack.attackedPart = attackedPart;
  3286. attack.destinationTile = ba.destinationTile;
  3287. attack.damageDealt = 0;
  3288. int dmgChance[] = { sbi.noDmg, sbi.oneDmg, sbi.twoDmg }; //dmgChance[i] - chance for doing i dmg when hit is successful
  3289. int dmgRand = gs->getRandomGenerator().nextInt(99);
  3290. //accumulating dmgChance
  3291. dmgChance[1] += dmgChance[0];
  3292. dmgChance[2] += dmgChance[1];
  3293. //calculating dealt damage
  3294. for(int damage = 0; damage < ARRAY_COUNT(dmgChance); ++damage)
  3295. {
  3296. if(dmgRand <= dmgChance[damage])
  3297. {
  3298. attack.damageDealt = damage;
  3299. break;
  3300. }
  3301. }
  3302. // attacked tile may have changed - update destination
  3303. attack.destinationTile = gs->curB->wallPartToBattleHex(EWallPart::EWallPart(attack.attackedPart));
  3304. logGlobal->traceStream() << "Catapult attacks " << (int)attack.attackedPart
  3305. << " dealing " << (int)attack.damageDealt << " damage";
  3306. //removing creatures in turrets / keep if one is destroyed
  3307. if(attack.damageDealt > 0 && (attackedPart == EWallPart::KEEP ||
  3308. attackedPart == EWallPart::BOTTOM_TOWER || attackedPart == EWallPart::UPPER_TOWER))
  3309. {
  3310. int posRemove = -1;
  3311. switch(attackedPart)
  3312. {
  3313. case EWallPart::KEEP:
  3314. posRemove = -2;
  3315. break;
  3316. case EWallPart::BOTTOM_TOWER:
  3317. posRemove = -3;
  3318. break;
  3319. case EWallPart::UPPER_TOWER:
  3320. posRemove = -4;
  3321. break;
  3322. }
  3323. BattleStacksRemoved bsr;
  3324. for(auto & elem : gs->curB->stacks)
  3325. {
  3326. if(elem->position == posRemove)
  3327. {
  3328. bsr.stackIDs.insert( elem->ID );
  3329. break;
  3330. }
  3331. }
  3332. sendAndApply(&bsr);
  3333. }
  3334. ca.attacker = ba.stackNumber;
  3335. ca.attackedParts.push_back(attack);
  3336. sendAndApply(&ca);
  3337. }
  3338. //finish by scope guard
  3339. break;
  3340. }
  3341. case Battle::STACK_HEAL: //healing with First Aid Tent
  3342. {
  3343. StartAction start_action(ba);
  3344. sendAndApply(&start_action);
  3345. const CGHeroInstance * attackingHero = gs->curB->battleGetFightingHero(ba.side);
  3346. const CStack *healer = gs->curB->battleGetStackByID(ba.stackNumber),
  3347. *destStack = gs->curB->battleGetStackByPos(ba.destinationTile);
  3348. ui32 healed = 0;
  3349. if(healer == nullptr || destStack == nullptr || !healer->hasBonusOfType(Bonus::HEALER))
  3350. {
  3351. complain("There is either no healer, no destination, or healer cannot heal :P");
  3352. }
  3353. else
  3354. {
  3355. ui32 maxiumHeal = healer->count * std::max(10, attackingHero->valOfBonuses(Bonus::SECONDARY_SKILL_PREMY, SecondarySkill::FIRST_AID));
  3356. healed = destStack->calculateHealedHealthPoints(maxiumHeal, false);
  3357. }
  3358. if(healed == 0)
  3359. {
  3360. //nothing to heal.. should we complain?
  3361. }
  3362. else
  3363. {
  3364. StacksHealedOrResurrected shr;
  3365. shr.lifeDrain = false;
  3366. shr.tentHealing = true;
  3367. shr.drainedFrom = ba.stackNumber;
  3368. StacksHealedOrResurrected::HealInfo hi;
  3369. hi.healedHP = healed;
  3370. hi.lowLevelResurrection = false;
  3371. hi.stackID = destStack->ID;
  3372. shr.healedStacks.push_back(hi);
  3373. sendAndApply(&shr);
  3374. }
  3375. sendAndApply(&end_action);
  3376. break;
  3377. }
  3378. case Battle::DAEMON_SUMMONING:
  3379. //TODO: From Strategija:
  3380. //Summon Demon is a level 2 spell.
  3381. {
  3382. const CStack *summoner = gs->curB->battleGetStackByID(ba.stackNumber),
  3383. *destStack = gs->curB->battleGetStackByPos(ba.destinationTile, false);
  3384. CreatureID summonedType(summoner->getBonusLocalFirst(Selector::type(Bonus::DAEMON_SUMMONING))->subtype);//in case summoner can summon more than one type of monsters... scream!
  3385. BattleStackAdded bsa;
  3386. bsa.attacker = summoner->attackerOwned;
  3387. bsa.creID = summonedType;
  3388. ui64 risedHp = summoner->count * summoner->valOfBonuses(Bonus::DAEMON_SUMMONING, bsa.creID.toEnum());
  3389. ui64 targetHealth = destStack->getCreature()->MaxHealth() * destStack->baseAmount;//todo: ignore AGE effect
  3390. ui64 canRiseHp = std::min(targetHealth, risedHp);
  3391. ui32 canRiseAmount = canRiseHp / VLC->creh->creatures.at(bsa.creID)->MaxHealth();
  3392. bsa.amount = std::min(canRiseAmount, destStack->baseAmount);
  3393. bsa.pos = gs->curB->getAvaliableHex(bsa.creID, bsa.attacker, destStack->position);
  3394. bsa.summoned = false;
  3395. if (bsa.amount) //there's rare possibility single creature cannot rise desired type
  3396. {
  3397. StartAction start_action(ba);
  3398. sendAndApply(&start_action);
  3399. BattleStacksRemoved bsr; //remove body
  3400. bsr.stackIDs.insert(destStack->ID);
  3401. sendAndApply(&bsr);
  3402. sendAndApply(&bsa);
  3403. BattleSetStackProperty ssp;
  3404. ssp.stackID = ba.stackNumber;
  3405. ssp.which = BattleSetStackProperty::CASTS; //reduce number of casts
  3406. ssp.val = -1;
  3407. ssp.absolute = false;
  3408. sendAndApply(&ssp);
  3409. sendAndApply(&end_action);
  3410. }
  3411. break;
  3412. }
  3413. case Battle::MONSTER_SPELL:
  3414. {
  3415. StartAction start_action(ba);
  3416. sendAndApply(&start_action);
  3417. const CStack * stack = gs->curB->battleGetStackByID(ba.stackNumber);
  3418. SpellID spellID = SpellID(ba.additionalInfo);
  3419. BattleHex destination(ba.destinationTile);
  3420. const Bonus *randSpellcaster = stack->getBonusLocalFirst(Selector::type(Bonus::RANDOM_SPELLCASTER));
  3421. const Bonus * spellcaster = stack->getBonusLocalFirst(Selector::typeSubtype(Bonus::SPELLCASTER, spellID));
  3422. //TODO special bonus for genies ability
  3423. if(randSpellcaster && battleGetRandomStackSpell(stack, CBattleInfoCallback::RANDOM_AIMED) < 0)
  3424. spellID = battleGetRandomStackSpell(stack, CBattleInfoCallback::RANDOM_GENIE);
  3425. if(spellID < 0)
  3426. complain("That stack can't cast spells!");
  3427. else
  3428. {
  3429. const CSpell * spell = SpellID(spellID).toSpell();
  3430. BattleSpellCastParameters parameters(gs->curB, stack, spell);
  3431. parameters.spellLvl = 0;
  3432. if (spellcaster)
  3433. vstd::amax(parameters.spellLvl, spellcaster->val);
  3434. if (randSpellcaster)
  3435. vstd::amax(parameters.spellLvl, randSpellcaster->val);
  3436. vstd::amin (parameters.spellLvl, 3);
  3437. parameters.effectLevel = parameters.spellLvl;
  3438. parameters.mode = ECastingMode::CREATURE_ACTIVE_CASTING;
  3439. parameters.aimToHex(destination);//todo: allow multiple destinations
  3440. parameters.selectedStack = nullptr;
  3441. spell->battleCast(spellEnv, parameters);
  3442. }
  3443. sendAndApply(&end_action);
  3444. break;
  3445. }
  3446. }
  3447. if(ba.stackNumber == gs->curB->activeStack || battleResult.get()) //active stack has moved or battle has finished
  3448. battleMadeAction.setn(true);
  3449. return ok;
  3450. }
  3451. void CGameHandler::playerMessage( PlayerColor player, const std::string &message, ObjectInstanceID currObj )
  3452. {
  3453. bool cheated=true;
  3454. PlayerMessage temp_message(player, message, ObjectInstanceID(-1)); // don't inform other client on selected object
  3455. sendAndApply(&temp_message);
  3456. if(message == "vcmiistari") //give all spells and 999 mana
  3457. {
  3458. SetMana sm;
  3459. GiveBonus giveBonus(GiveBonus::HERO);
  3460. CGHeroInstance *h = gs->getHero(currObj);
  3461. if(!h && complain("Cannot realize cheat, no hero selected!")) return;
  3462. sm.hid = h->id;
  3463. giveBonus.id = h->id.getNum();
  3464. //give all spells with bonus (to allow banned spells)
  3465. giveBonus.bonus = Bonus(Bonus::PERMANENT, Bonus::SPELLS_OF_LEVEL, Bonus::OTHER, 0, 0);
  3466. //start with level 0 to skip abilities
  3467. for(int level = 1; level <= GameConstants::SPELL_LEVELS; level++)
  3468. {
  3469. giveBonus.bonus.subtype = level;
  3470. sendAndApply(&giveBonus);
  3471. }
  3472. //give mana
  3473. sm.val = 999;
  3474. sm.absolute = true;
  3475. if(!h->hasSpellbook()) //hero doesn't have spellbook
  3476. giveHeroNewArtifact(h, VLC->arth->artifacts[ArtifactID::SPELLBOOK], ArtifactPosition::SPELLBOOK); //give spellbook
  3477. sendAndApply(&sm);
  3478. }
  3479. else if (message == "vcmiarmenelos") //build all buildings in selected town
  3480. {
  3481. CGHeroInstance *hero = gs->getHero(currObj);
  3482. CGTownInstance *town;
  3483. if (hero)
  3484. town = hero->visitedTown;
  3485. else
  3486. town = gs->getTown(currObj);
  3487. if (town)
  3488. {
  3489. for (auto & build : town->town->buildings)
  3490. {
  3491. if (!town->hasBuilt(build.first)
  3492. && !build.second->Name().empty()
  3493. && build.first != BuildingID::SHIP)
  3494. {
  3495. buildStructure(town->id, build.first, true);
  3496. }
  3497. }
  3498. }
  3499. }
  3500. else if(message == "vcmiainur") //gives 5 archangels into each slot
  3501. {
  3502. CGHeroInstance *hero = gs->getHero(currObj);
  3503. const CCreature *archangel = VLC->creh->creatures.at(13);
  3504. if(!hero) return;
  3505. for(int i = 0; i < GameConstants::ARMY_SIZE; i++)
  3506. if(!hero->hasStackAtSlot(SlotID(i)))
  3507. insertNewStack(StackLocation(hero, SlotID(i)), archangel, 5);
  3508. }
  3509. else if(message == "vcmiangband") //gives 10 black knight into each slot
  3510. {
  3511. CGHeroInstance *hero = gs->getHero(currObj);
  3512. const CCreature *blackKnight = VLC->creh->creatures.at(66);
  3513. if(!hero) return;
  3514. for(int i = 0; i < GameConstants::ARMY_SIZE; i++)
  3515. if(!hero->hasStackAtSlot(SlotID(i)))
  3516. insertNewStack(StackLocation(hero, SlotID(i)), blackKnight, 10);
  3517. }
  3518. else if(message == "vcmiglaurung") //gives 5000 crystal dragons into each slot
  3519. {
  3520. CGHeroInstance *hero = gs->getHero(currObj);
  3521. const CCreature *crystalDragon = VLC->creh->creatures.at(133);
  3522. if(!hero) return;
  3523. for(int i = 0; i < GameConstants::ARMY_SIZE; i++)
  3524. if(!hero->hasStackAtSlot(SlotID(i)))
  3525. insertNewStack(StackLocation(hero, SlotID(i)), crystalDragon, 5000);
  3526. }
  3527. else if(message == "vcminoldor") //all war machines
  3528. {
  3529. CGHeroInstance *hero = gs->getHero(currObj);
  3530. if(!hero) return;
  3531. if(!hero->getArt(ArtifactPosition::MACH1))
  3532. giveHeroNewArtifact(hero, VLC->arth->artifacts[ArtifactID::BALLISTA], ArtifactPosition::MACH1);
  3533. if(!hero->getArt(ArtifactPosition::MACH2))
  3534. giveHeroNewArtifact(hero, VLC->arth->artifacts[ArtifactID::AMMO_CART], ArtifactPosition::MACH2);
  3535. if(!hero->getArt(ArtifactPosition::MACH3))
  3536. giveHeroNewArtifact(hero, VLC->arth->artifacts[ArtifactID::FIRST_AID_TENT], ArtifactPosition::MACH3);
  3537. }
  3538. else if (message == "vcmiforgeofnoldorking") //hero gets all artifacts except war machines, spell scrolls and spell book
  3539. {
  3540. CGHeroInstance *hero = gs->getHero(currObj);
  3541. if(!hero) return;
  3542. for (int g = 7; g < VLC->arth->artifacts.size(); ++g) //including artifacts from mods
  3543. giveHeroNewArtifact(hero, VLC->arth->artifacts[g], ArtifactPosition::PRE_FIRST);
  3544. }
  3545. else if(message == "vcmiglorfindel") //selected hero gains a new level
  3546. {
  3547. CGHeroInstance *hero = gs->getHero(currObj);
  3548. changePrimSkill(hero, PrimarySkill::EXPERIENCE, VLC->heroh->reqExp(hero->level+1) - VLC->heroh->reqExp(hero->level));
  3549. }
  3550. else if(message == "vcminahar") //1000000 movement points
  3551. {
  3552. CGHeroInstance *hero = gs->getHero(currObj);
  3553. if(!hero) return;
  3554. SetMovePoints smp;
  3555. smp.hid = hero->id;
  3556. smp.val = 1000000;
  3557. sendAndApply(&smp);
  3558. }
  3559. else if(message == "vcmiformenos") //give resources
  3560. {
  3561. SetResources sr;
  3562. sr.player = player;
  3563. sr.res = gs->getPlayer(player)->resources;
  3564. for(int i=0;i<Res::GOLD;i++)
  3565. sr.res[i] += 100;
  3566. sr.res[Res::GOLD] += 100000; //100k
  3567. sendAndApply(&sr);
  3568. }
  3569. else if(message == "vcmieagles") //reveal FoW
  3570. {
  3571. FoWChange fc;
  3572. fc.mode = 1;
  3573. fc.player = player;
  3574. auto hlp_tab = new int3[gs->map->width * gs->map->height * (gs->map->twoLevel ? 2 : 1)];
  3575. int lastUnc = 0;
  3576. for(int i=0;i<gs->map->width;i++)
  3577. for(int j=0;j<gs->map->height;j++)
  3578. for(int k = 0; k < (gs->map->twoLevel ? 2 : 1); k++)
  3579. if(!gs->getPlayerTeam(fc.player)->fogOfWarMap.at(i).at(j).at(k))
  3580. hlp_tab[lastUnc++] = int3(i,j,k);
  3581. fc.tiles.insert(hlp_tab, hlp_tab + lastUnc);
  3582. delete [] hlp_tab;
  3583. sendAndApply(&fc);
  3584. }
  3585. else if(message == "vcmisilmaril") //player wins
  3586. {
  3587. gs->getPlayer(player)->enteredWinningCheatCode = 1;
  3588. }
  3589. else if(message == "vcmimelkor") //player looses
  3590. {
  3591. gs->getPlayer(player)->enteredLosingCheatCode = 1;
  3592. }
  3593. else
  3594. cheated = false;
  3595. if(cheated)
  3596. {
  3597. SystemMessage temp_message(VLC->generaltexth->allTexts.at(260));
  3598. sendAndApply(&temp_message);
  3599. checkVictoryLossConditionsForPlayer(player);//Player enter win code or got required art\creature
  3600. }
  3601. }
  3602. bool CGameHandler::makeCustomAction( BattleAction &ba )
  3603. {
  3604. switch(ba.actionType)
  3605. {
  3606. case Battle::HERO_SPELL:
  3607. {
  3608. COMPLAIN_RET_FALSE_IF(ba.side > 1, "Side must be 0 or 1!");
  3609. const CGHeroInstance *h = gs->curB->battleGetFightingHero(ba.side);
  3610. if(!h)
  3611. {
  3612. logGlobal->warnStream() << "Wrong caster!";
  3613. return false;
  3614. }
  3615. if(ba.additionalInfo >= VLC->spellh->objects.size())
  3616. {
  3617. logGlobal->warnStream() << "Wrong spell id (" << ba.additionalInfo << ")!";
  3618. return false;
  3619. }
  3620. const CSpell * s = SpellID(ba.additionalInfo).toSpell();
  3621. BattleSpellCastParameters parameters(gs->curB, h, s);
  3622. parameters.aimToHex(ba.destinationTile);//todo: allow multiple destinations
  3623. parameters.mode = ECastingMode::HERO_CASTING;
  3624. parameters.selectedStack = gs->curB->battleGetStackByID(ba.selectedStack, false);
  3625. ESpellCastProblem::ESpellCastProblem escp = gs->curB->battleCanCastThisSpell(h, s, ECastingMode::HERO_CASTING);//todo: should we check aimed cast(battleCanCastThisSpellHere)?
  3626. if(escp != ESpellCastProblem::OK)
  3627. {
  3628. logGlobal->warnStream() << "Spell cannot be cast!";
  3629. logGlobal->warnStream() << "Problem : " << escp;
  3630. return false;
  3631. }
  3632. StartAction start_action(ba);
  3633. sendAndApply(&start_action); //start spell casting
  3634. s->battleCast(spellEnv, parameters);
  3635. sendAndApply(&end_action);
  3636. if( !gs->curB->battleGetStackByID(gs->curB->activeStack, true))
  3637. {
  3638. battleMadeAction.setn(true);
  3639. }
  3640. checkForBattleEnd();
  3641. if(battleResult.get())
  3642. {
  3643. battleMadeAction.setn(true);
  3644. //battle will be ended by startBattle function
  3645. //endBattle(gs->curB->tile, gs->curB->heroes[0], gs->curB->heroes[1]);
  3646. }
  3647. return true;
  3648. }
  3649. }
  3650. return false;
  3651. }
  3652. void CGameHandler::stackTurnTrigger(const CStack * st)
  3653. {
  3654. BattleTriggerEffect bte;
  3655. bte.stackID = st->ID;
  3656. bte.effect = -1;
  3657. bte.val = 0;
  3658. bte.additionalInfo = 0;
  3659. if (st->alive())
  3660. {
  3661. //unbind
  3662. if (st->getEffect (SpellID::BIND))
  3663. {
  3664. bool unbind = true;
  3665. BonusList bl = *(st->getBonuses(Selector::type(Bonus::BIND_EFFECT)));
  3666. std::set<const CStack*> stacks = gs->curB-> batteAdjacentCreatures(st);
  3667. for(Bonus * b : bl)
  3668. {
  3669. const CStack * stack = gs->curB->battleGetStackByID(b->additionalInfo); //binding stack must be alive and adjacent
  3670. if (stack)
  3671. {
  3672. if (vstd::contains(stacks, stack)) //binding stack is still present
  3673. {
  3674. unbind = false;
  3675. }
  3676. }
  3677. }
  3678. if (unbind)
  3679. {
  3680. BattleSetStackProperty ssp;
  3681. ssp.which = BattleSetStackProperty::UNBIND;
  3682. ssp.stackID = st->ID;
  3683. sendAndApply(&ssp);
  3684. }
  3685. }
  3686. //regeneration
  3687. if(st->hasBonusOfType(Bonus::HP_REGENERATION))
  3688. {
  3689. bte.effect = Bonus::HP_REGENERATION;
  3690. bte.val = std::min((int)(st->MaxHealth() - st->firstHPleft), st->valOfBonuses(Bonus::HP_REGENERATION));
  3691. }
  3692. if(st->hasBonusOfType(Bonus::FULL_HP_REGENERATION))
  3693. {
  3694. bte.effect = Bonus::HP_REGENERATION;
  3695. bte.val = st->MaxHealth() - st->firstHPleft;
  3696. }
  3697. if (bte.val) //anything to heal
  3698. sendAndApply(&bte);
  3699. if(st->hasBonusOfType(Bonus::POISON))
  3700. {
  3701. const Bonus * b = st->getBonusLocalFirst(Selector::source(Bonus::SPELL_EFFECT, SpellID::POISON).And(Selector::type(Bonus::STACK_HEALTH)));
  3702. if (b) //TODO: what if not?...
  3703. {
  3704. bte.val = std::max (b->val - 10, -(st->valOfBonuses(Bonus::POISON)));
  3705. if (bte.val < b->val) //(negative) poison effect increases - update it
  3706. {
  3707. bte.effect = Bonus::POISON;
  3708. sendAndApply(&bte);
  3709. }
  3710. }
  3711. }
  3712. if (st->hasBonusOfType(Bonus::MANA_DRAIN) && !vstd::contains(st->state, EBattleStackState::DRAINED_MANA))
  3713. {
  3714. const PlayerColor opponent = gs->curB->theOtherPlayer(st->owner);
  3715. const CGHeroInstance * opponentHero = gs->curB->getHero(opponent);
  3716. if (opponentHero)
  3717. {
  3718. ui32 manaDrained = st->valOfBonuses(Bonus::MANA_DRAIN);
  3719. vstd::amin(manaDrained, opponentHero->mana);
  3720. if (manaDrained)
  3721. {
  3722. bte.effect = Bonus::MANA_DRAIN;
  3723. bte.val = manaDrained;
  3724. bte.additionalInfo = opponentHero->id.getNum(); //for sanity
  3725. sendAndApply(&bte);
  3726. }
  3727. }
  3728. }
  3729. if (st->isLiving() && !st->hasBonusOfType(Bonus::FEARLESS))
  3730. {
  3731. bool fearsomeCreature = false;
  3732. for(CStack * stack : gs->curB->stacks)
  3733. {
  3734. if (stack->owner != st->owner && stack->alive() && stack->hasBonusOfType(Bonus::FEAR))
  3735. {
  3736. fearsomeCreature = true;
  3737. break;
  3738. }
  3739. }
  3740. if (fearsomeCreature)
  3741. {
  3742. if (gs->getRandomGenerator().nextInt(99) < 10) //fixed 10%
  3743. {
  3744. bte.effect = Bonus::FEAR;
  3745. sendAndApply(&bte);
  3746. }
  3747. }
  3748. }
  3749. BonusList bl = *(st->getBonuses(Selector::type(Bonus::ENCHANTER)));
  3750. int side = gs->curB->whatSide(st->owner);
  3751. if (st->casts && !gs->curB->sides.at(side).enchanterCounter)
  3752. {
  3753. bool cast = false;
  3754. while (!bl.empty() && !cast)
  3755. {
  3756. auto bonus = *RandomGeneratorUtil::nextItem(bl, gs->getRandomGenerator());
  3757. auto spellID = SpellID(bonus->subtype);
  3758. const CSpell * spell = SpellID(spellID).toSpell();
  3759. bl.remove_if([&bonus](Bonus * b){return b==bonus;});
  3760. if (gs->curB->battleCanCastThisSpell(st, spell, ECastingMode::ENCHANTER_CASTING) == ESpellCastProblem::OK)
  3761. {
  3762. BattleSpellCastParameters parameters(gs->curB, st, spell);
  3763. parameters.spellLvl = bonus->val;
  3764. parameters.effectLevel = bonus->val;//todo: recheck
  3765. parameters.aimToHex(BattleHex::INVALID);
  3766. parameters.mode = ECastingMode::ENCHANTER_CASTING;
  3767. parameters.selectedStack = nullptr;
  3768. spell->battleCast(spellEnv, parameters);
  3769. //todo: move to mechanics
  3770. BattleSetStackProperty ssp;
  3771. ssp.which = BattleSetStackProperty::ENCHANTER_COUNTER;
  3772. ssp.absolute = false;
  3773. ssp.val = bonus->additionalInfo; //increase cooldown counter
  3774. ssp.stackID = st->ID;
  3775. sendAndApply(&ssp);
  3776. cast = true;
  3777. }
  3778. };
  3779. }
  3780. bl = *(st->getBonuses(Selector::type(Bonus::ENCHANTED)));
  3781. for (auto b : bl)
  3782. {
  3783. SetStackEffect sse;
  3784. int val = bl.valOfBonuses (Selector::typeSubtype(b->type, b->subtype));
  3785. if (val > 3)
  3786. {
  3787. for (auto s : gs->curB->battleGetAllStacks())
  3788. {
  3789. if (st->owner == s->owner && s->isValidTarget()) //all allied
  3790. sse.stacks.push_back (s->ID);
  3791. }
  3792. }
  3793. else
  3794. sse.stacks.push_back (st->ID);
  3795. Bonus pseudoBonus;
  3796. pseudoBonus.sid = b->subtype;
  3797. pseudoBonus.val = ((val > 3) ? (val - 3) : val);
  3798. pseudoBonus.turnsRemain = 50;
  3799. st->stackEffectToFeature (sse.effect, pseudoBonus);
  3800. if (sse.effect.size())
  3801. sendAndApply (&sse);
  3802. }
  3803. }
  3804. }
  3805. void CGameHandler::handleDamageFromObstacle(const CObstacleInstance &obstacle, const CStack * curStack)
  3806. {
  3807. //we want to determine following vars depending on obstacle type
  3808. int damage = -1;
  3809. int effect = -1;
  3810. bool oneTimeObstacle = false;
  3811. //helper info
  3812. const SpellCreatedObstacle *spellObstacle = dynamic_cast<const SpellCreatedObstacle*>(&obstacle); //not nice but we may need spell params
  3813. const ui8 side = !curStack->attackerOwned; //if enemy is defending (false = 0), side of enemy hero is 1 (true)
  3814. const CGHeroInstance *hero = gs->curB->battleGetFightingHero(side);//FIXME: there may be no hero - landmines in Tower
  3815. if(obstacle.obstacleType == CObstacleInstance::MOAT)
  3816. {
  3817. damage = battleGetMoatDmg();
  3818. }
  3819. else if(obstacle.obstacleType == CObstacleInstance::LAND_MINE)
  3820. {
  3821. //You don't get hit by a Mine you can see.
  3822. if(gs->curB->battleIsObstacleVisibleForSide(obstacle, (BattlePerspective::BattlePerspective)side))
  3823. return;
  3824. oneTimeObstacle = true;
  3825. effect = 82; //makes
  3826. const CSpell * sp = SpellID(SpellID::LAND_MINE).toSpell();
  3827. if(sp->isImmuneByStack(hero, curStack))
  3828. return;
  3829. damage = sp->calculateDamage(hero, curStack,
  3830. spellObstacle->spellLevel, spellObstacle->casterSpellPower);
  3831. //TODO even if obstacle wasn't created by hero (Tower "moat") it should deal dmg as if cast by hero,
  3832. //if it is bigger than default dmg. Or is it just irrelevant H3 implementation quirk
  3833. }
  3834. else if(obstacle.obstacleType == CObstacleInstance::FIRE_WALL)
  3835. {
  3836. const CSpell * sp = SpellID(SpellID::FIRE_WALL).toSpell();
  3837. if(sp->isImmuneByStack(hero, curStack))
  3838. return;
  3839. damage = sp->calculateDamage(hero, curStack,
  3840. spellObstacle->spellLevel, spellObstacle->casterSpellPower);
  3841. }
  3842. else
  3843. {
  3844. //no other obstacle does damage to stack
  3845. return;
  3846. }
  3847. BattleStackAttacked bsa;
  3848. if(effect >= 0)
  3849. {
  3850. bsa.flags |= BattleStackAttacked::EFFECT;
  3851. bsa.effect = effect; //makes POOF
  3852. }
  3853. bsa.damageAmount = damage;
  3854. bsa.stackAttacked = curStack->ID;
  3855. bsa.attackerID = -1;
  3856. curStack->prepareAttacked(bsa, gameState()->getRandomGenerator());
  3857. StacksInjured si;
  3858. si.stacks.push_back(bsa);
  3859. sendAndApply(&si);
  3860. if(oneTimeObstacle)
  3861. removeObstacle(obstacle);
  3862. }
  3863. void CGameHandler::handleTimeEvents()
  3864. {
  3865. gs->map->events.sort(evntCmp);
  3866. while(gs->map->events.size() && gs->map->events.front().firstOccurence+1 == gs->day)
  3867. {
  3868. CMapEvent ev = gs->map->events.front();
  3869. for (int player = 0; player < PlayerColor::PLAYER_LIMIT_I; player++)
  3870. {
  3871. auto color = PlayerColor(player);
  3872. PlayerState *pinfo = gs->getPlayer(color, false); //do not output error if player does not exist
  3873. if( pinfo //player exists
  3874. && (ev.players & 1<<player) //event is enabled to this player
  3875. && ((ev.computerAffected && !pinfo->human)
  3876. || (ev.humanAffected && pinfo->human)
  3877. )
  3878. )
  3879. {
  3880. //give resources
  3881. SetResources sr;
  3882. sr.player = color;
  3883. sr.res = pinfo->resources + ev.resources;
  3884. //prepare dialog
  3885. InfoWindow iw;
  3886. iw.player = color;
  3887. iw.text << ev.message;
  3888. for (int i=0; i<ev.resources.size(); i++)
  3889. {
  3890. if(ev.resources.at(i)) //if resource is changed, we add it to the dialog
  3891. iw.components.push_back(Component(Component::RESOURCE,i,ev.resources.at(i),0));
  3892. }
  3893. if (iw.components.size())
  3894. {
  3895. sr.res.amax(0); // If removing too much resources, adjust the amount so the total doesn't become negative.
  3896. sendAndApply(&sr); //update player resources if changed
  3897. }
  3898. sendAndApply(&iw); //show dialog
  3899. }
  3900. } //PLAYERS LOOP
  3901. if(ev.nextOccurence)
  3902. {
  3903. gs->map->events.pop_front();
  3904. ev.firstOccurence += ev.nextOccurence;
  3905. auto it = gs->map->events.begin();
  3906. while ( it !=gs->map->events.end() && it->earlierThanOrEqual(ev))
  3907. it++;
  3908. gs->map->events.insert(it, ev);
  3909. }
  3910. else
  3911. {
  3912. gs->map->events.pop_front();
  3913. }
  3914. }
  3915. //TODO send only if changed
  3916. UpdateMapEvents ume;
  3917. ume.events = gs->map->events;
  3918. sendAndApply(&ume);
  3919. }
  3920. void CGameHandler::handleTownEvents(CGTownInstance * town, NewTurn &n)
  3921. {
  3922. town->events.sort(evntCmp);
  3923. while(town->events.size() && town->events.front().firstOccurence == gs->day)
  3924. {
  3925. PlayerColor player = town->tempOwner;
  3926. CCastleEvent ev = town->events.front();
  3927. PlayerState *pinfo = gs->getPlayer(player, false);
  3928. if( pinfo //player exists
  3929. && (ev.players & 1<<player.getNum()) //event is enabled to this player
  3930. && ((ev.computerAffected && !pinfo->human)
  3931. || (ev.humanAffected && pinfo->human) ) )
  3932. {
  3933. // dialog
  3934. InfoWindow iw;
  3935. iw.player = player;
  3936. iw.text << ev.message;
  3937. if(ev.resources.nonZero())
  3938. {
  3939. TResources was = n.res[player];
  3940. n.res[player] += ev.resources;
  3941. n.res[player].amax(0);
  3942. for (int i=0; i<ev.resources.size(); i++)
  3943. if(ev.resources.at(i) && pinfo->resources.at(i) != n.res.at(player).at(i)) //if resource had changed, we add it to the dialog
  3944. iw.components.push_back(Component(Component::RESOURCE,i,n.res.at(player).at(i)-was.at(i),0));
  3945. }
  3946. for(auto & i : ev.buildings)
  3947. {
  3948. if(!town->hasBuilt(i))
  3949. {
  3950. buildStructure(town->id, i, true);
  3951. iw.components.push_back(Component(Component::BUILDING, town->subID, i, 0));
  3952. }
  3953. }
  3954. if (!ev.creatures.empty() && !vstd::contains(n.cres, town->id))
  3955. {
  3956. n.cres[town->id].tid = town->id;
  3957. n.cres[town->id].creatures = town->creatures;
  3958. }
  3959. auto & sac = n.cres[town->id];
  3960. for(si32 i=0;i<ev.creatures.size();i++) //creature growths
  3961. {
  3962. if(!town->creatures.at(i).second.empty() && ev.creatures.at(i) > 0)//there is dwelling
  3963. {
  3964. sac.creatures[i].first += ev.creatures.at(i);
  3965. iw.components.push_back(Component(Component::CREATURE,
  3966. town->creatures.at(i).second.back(), ev.creatures.at(i), 0));
  3967. }
  3968. }
  3969. sendAndApply(&iw); //show dialog
  3970. }
  3971. if(ev.nextOccurence)
  3972. {
  3973. town->events.pop_front();
  3974. ev.firstOccurence += ev.nextOccurence;
  3975. auto it = town->events.begin();
  3976. while ( it != town->events.end() && it->earlierThanOrEqual(ev))
  3977. it++;
  3978. town->events.insert(it, ev);
  3979. }
  3980. else
  3981. {
  3982. town->events.pop_front();
  3983. }
  3984. }
  3985. //TODO send only if changed
  3986. UpdateCastleEvents uce;
  3987. uce.town = town->id;
  3988. uce.events = town->events;
  3989. sendAndApply(&uce);
  3990. }
  3991. bool CGameHandler::complain( const std::string &problem )
  3992. {
  3993. sendMessageToAll("Server encountered a problem: " + problem);
  3994. logGlobal->errorStream() << problem;
  3995. return true;
  3996. }
  3997. void CGameHandler::showGarrisonDialog( ObjectInstanceID upobj, ObjectInstanceID hid, bool removableUnits)
  3998. {
  3999. //PlayerColor player = getOwner(hid);
  4000. auto upperArmy = dynamic_cast<const CArmedInstance*>(getObj(upobj));
  4001. auto lowerArmy = dynamic_cast<const CArmedInstance*>(getObj(hid));
  4002. assert(lowerArmy);
  4003. assert(upperArmy);
  4004. auto garrisonQuery = std::make_shared<CGarrisonDialogQuery>(upperArmy, lowerArmy);
  4005. queries.addQuery(garrisonQuery);
  4006. GarrisonDialog gd;
  4007. gd.hid = hid;
  4008. gd.objid = upobj;
  4009. gd.removableUnits = removableUnits;
  4010. gd.queryID = garrisonQuery->queryID;
  4011. sendAndApply(&gd);
  4012. }
  4013. void CGameHandler::showThievesGuildWindow(PlayerColor player, ObjectInstanceID requestingObjId)
  4014. {
  4015. OpenWindow ow;
  4016. ow.window = OpenWindow::THIEVES_GUILD;
  4017. ow.id1 = player.getNum();
  4018. ow.id2 = requestingObjId.getNum();
  4019. sendAndApply(&ow);
  4020. }
  4021. bool CGameHandler::isAllowedExchange( ObjectInstanceID id1, ObjectInstanceID id2 )
  4022. {
  4023. if(id1 == id2)
  4024. return true;
  4025. const CGObjectInstance *o1 = getObj(id1), *o2 = getObj(id2);
  4026. if(!o1 || !o2)
  4027. return true; //arranging stacks within an object should be always allowed
  4028. if (o1 && o2)
  4029. {
  4030. if(o1->ID == Obj::TOWN)
  4031. {
  4032. const CGTownInstance *t = static_cast<const CGTownInstance*>(o1);
  4033. if(t->visitingHero == o2 || t->garrisonHero == o2)
  4034. return true;
  4035. }
  4036. if(o2->ID == Obj::TOWN)
  4037. {
  4038. const CGTownInstance *t = static_cast<const CGTownInstance*>(o2);
  4039. if(t->visitingHero == o1 || t->garrisonHero == o1)
  4040. return true;
  4041. }
  4042. if (o1->ID == Obj::HERO && o2->ID == Obj::HERO)
  4043. {
  4044. const CGHeroInstance *h1 = static_cast<const CGHeroInstance*>(o1);
  4045. const CGHeroInstance *h2 = static_cast<const CGHeroInstance*>(o2);
  4046. // two heroes in same town (garrisoned and visiting)
  4047. if (h1->visitedTown != nullptr && h2->visitedTown != nullptr && h1->visitedTown == h2->visitedTown)
  4048. return true;
  4049. }
  4050. //Ongoing garrison exchange
  4051. if(auto dialog = std::dynamic_pointer_cast<CGarrisonDialogQuery>(queries.topQuery(o1->tempOwner)))
  4052. {
  4053. if(dialog->exchangingArmies.at(0) == o1 && dialog->exchangingArmies.at(1) == o2)
  4054. return true;
  4055. if(dialog->exchangingArmies.at(1) == o1 && dialog->exchangingArmies.at(0) == o2)
  4056. return true;
  4057. }
  4058. }
  4059. return false;
  4060. }
  4061. void CGameHandler::objectVisited( const CGObjectInstance * obj, const CGHeroInstance * h )
  4062. {
  4063. logGlobal->debugStream() << h->nodeName() << " visits " << obj->getObjectName() << "(" << obj->ID << ":" << obj->subID << ")";
  4064. auto visitQuery = std::make_shared<CObjectVisitQuery>(obj, h, obj->visitablePos());
  4065. queries.addQuery(visitQuery); //TODO real visit pos
  4066. HeroVisit hv;
  4067. hv.obj = obj;
  4068. hv.hero = h;
  4069. hv.player = h->tempOwner;
  4070. hv.starting = true;
  4071. sendAndApply(&hv);
  4072. obj->onHeroVisit(h);
  4073. queries.popIfTop(visitQuery); //visit ends here if no queries were created
  4074. }
  4075. void CGameHandler::objectVisitEnded(const CObjectVisitQuery &query)
  4076. {
  4077. logGlobal->traceStream() << query.visitingHero->nodeName() << " visit ends.\n";
  4078. HeroVisit hv;
  4079. hv.player = query.players.front();
  4080. hv.obj = nullptr; //not necessary, moreover may have been deleted in the meantime
  4081. hv.hero = query.visitingHero;
  4082. assert(hv.hero);
  4083. hv.starting = false;
  4084. sendAndApply(&hv);
  4085. }
  4086. bool CGameHandler::buildBoat( ObjectInstanceID objid )
  4087. {
  4088. const IShipyard *obj = IShipyard::castFrom(getObj(objid));
  4089. if(obj->shipyardStatus() != IBoatGenerator::GOOD)
  4090. {
  4091. complain("Cannot build boat in this shipyard!");
  4092. return false;
  4093. }
  4094. else if(obj->o->ID == Obj::TOWN
  4095. && !static_cast<const CGTownInstance*>(obj)->hasBuilt(BuildingID::SHIPYARD))
  4096. {
  4097. complain("Cannot build boat in the town - no shipyard!");
  4098. return false;
  4099. }
  4100. const PlayerColor playerID = obj->o->tempOwner;
  4101. TResources boatCost;
  4102. obj->getBoatCost(boatCost);
  4103. TResources aviable = gs->getPlayer(playerID)->resources;
  4104. if (!aviable.canAfford(boatCost))
  4105. {
  4106. complain("Not enough resources to build a boat!");
  4107. return false;
  4108. }
  4109. int3 tile = obj->bestLocation();
  4110. if(!gs->map->isInTheMap(tile))
  4111. {
  4112. complain("Cannot find appropriate tile for a boat!");
  4113. return false;
  4114. }
  4115. //take boat cost
  4116. SetResources sr;
  4117. sr.player = playerID;
  4118. sr.res = (aviable - boatCost);
  4119. sendAndApply(&sr);
  4120. //create boat
  4121. NewObject no;
  4122. no.ID = Obj::BOAT;
  4123. no.subID = obj->getBoatType();
  4124. no.pos = tile + int3(1,0,0);
  4125. sendAndApply(&no);
  4126. return true;
  4127. }
  4128. void CGameHandler::engageIntoBattle( PlayerColor player )
  4129. {
  4130. //notify interfaces
  4131. PlayerBlocked pb;
  4132. pb.player = player;
  4133. pb.reason = PlayerBlocked::UPCOMING_BATTLE;
  4134. pb.startOrEnd = PlayerBlocked::BLOCKADE_STARTED;
  4135. sendAndApply(&pb);
  4136. }
  4137. void CGameHandler::checkVictoryLossConditions(const std::set<PlayerColor> & playerColors)
  4138. {
  4139. for(auto playerColor : playerColors)
  4140. {
  4141. if(gs->getPlayer(playerColor, false))
  4142. checkVictoryLossConditionsForPlayer(playerColor);
  4143. }
  4144. }
  4145. void CGameHandler::checkVictoryLossConditionsForAll()
  4146. {
  4147. std::set<PlayerColor> playerColors;
  4148. for(int i = 0; i < PlayerColor::PLAYER_LIMIT_I; ++i)
  4149. {
  4150. playerColors.insert(PlayerColor(i));
  4151. }
  4152. checkVictoryLossConditions(playerColors);
  4153. }
  4154. void CGameHandler::checkVictoryLossConditionsForPlayer(PlayerColor player)
  4155. {
  4156. const PlayerState *p = gs->getPlayer(player);
  4157. if(p->status != EPlayerStatus::INGAME) return;
  4158. auto victoryLossCheckResult = gs->checkForVictoryAndLoss(player);
  4159. if(victoryLossCheckResult.victory() || victoryLossCheckResult.loss())
  4160. {
  4161. InfoWindow iw;
  4162. getVictoryLossMessage(player, victoryLossCheckResult, iw);
  4163. sendAndApply(&iw);
  4164. PlayerEndsGame peg;
  4165. peg.player = player;
  4166. peg.victoryLossCheckResult = victoryLossCheckResult;
  4167. sendAndApply(&peg);
  4168. if(victoryLossCheckResult.victory())
  4169. {
  4170. //one player won -> all enemies lost
  4171. for (auto i = gs->players.cbegin(); i!=gs->players.cend(); i++)
  4172. {
  4173. if(i->first != player && gs->getPlayer(i->first)->status == EPlayerStatus::INGAME)
  4174. {
  4175. peg.player = i->first;
  4176. peg.victoryLossCheckResult = gameState()->getPlayerRelations(player, i->first) == PlayerRelations::ALLIES ?
  4177. victoryLossCheckResult : victoryLossCheckResult.invert(); // ally of winner
  4178. InfoWindow iw;
  4179. getVictoryLossMessage(player, peg.victoryLossCheckResult, iw);
  4180. iw.player = i->first;
  4181. sendAndApply(&iw);
  4182. sendAndApply(&peg);
  4183. }
  4184. }
  4185. if(p->human)
  4186. {
  4187. end2 = true;
  4188. if(gs->scenarioOps->campState)
  4189. {
  4190. std::vector<CGHeroInstance *> crossoverHeroes;
  4191. for(CGHeroInstance * hero : gs->map->heroesOnMap)
  4192. {
  4193. if(hero->tempOwner == player)
  4194. {
  4195. // keep all heroes from the winning player
  4196. crossoverHeroes.push_back(hero);
  4197. }
  4198. else if(vstd::contains(gs->scenarioOps->campState->getCurrentScenario().keepHeroes, HeroTypeID(hero->subID)))
  4199. {
  4200. // keep hero whether lost or won (like Xeron in AB campaign)
  4201. crossoverHeroes.push_back(hero);
  4202. }
  4203. }
  4204. // keep lost heroes which are in heroes pool
  4205. for(auto & heroPair : gs->hpool.heroesPool)
  4206. {
  4207. if(vstd::contains(gs->scenarioOps->campState->getCurrentScenario().keepHeroes, HeroTypeID(heroPair.first)))
  4208. {
  4209. crossoverHeroes.push_back(heroPair.second.get());
  4210. }
  4211. }
  4212. gs->scenarioOps->campState->setCurrentMapAsConquered(crossoverHeroes);
  4213. //Request clients to change connection mode
  4214. PrepareForAdvancingCampaign pfac;
  4215. sendAndApply(&pfac);
  4216. //Change connection mode
  4217. if(getPlayer(player)->human && getStartInfo()->campState)
  4218. {
  4219. for(auto connection : conns)
  4220. connection->prepareForSendingHeroes();
  4221. }
  4222. UpdateCampaignState ucs;
  4223. ucs.camp = gs->scenarioOps->campState;
  4224. sendAndApply(&ucs);
  4225. }
  4226. }
  4227. }
  4228. else
  4229. {
  4230. //copy heroes vector to avoid iterator invalidation as removal change PlayerState
  4231. auto hlp = p->heroes;
  4232. for(auto h : hlp) //eliminate heroes
  4233. {
  4234. if(h.get())
  4235. removeObject(h);
  4236. }
  4237. //player lost -> all his objects become unflagged (neutral)
  4238. for (auto obj : gs->map->objects) //unflag objs
  4239. {
  4240. if(obj.get() && obj->tempOwner == player)
  4241. setOwner(obj, PlayerColor::NEUTRAL);
  4242. }
  4243. //eliminating one player may cause victory of another:
  4244. std::set<PlayerColor> playerColors;
  4245. //do not copy player state (CBonusSystemNode) by value
  4246. for (auto &p : gs->players) //players may have different colors, iterate over players and not integers
  4247. {
  4248. if (p.first != player)
  4249. playerColors.insert(p.first);
  4250. }
  4251. //notify all players
  4252. for (auto pc : playerColors)
  4253. {
  4254. if (gs->getPlayer(pc)->status == EPlayerStatus::INGAME)
  4255. {
  4256. InfoWindow iw;
  4257. getVictoryLossMessage(player, victoryLossCheckResult.invert(), iw);
  4258. iw.player = pc;
  4259. sendAndApply(&iw);
  4260. }
  4261. }
  4262. checkVictoryLossConditions(playerColors);
  4263. }
  4264. auto playerInfo = gs->getPlayer(gs->currentPlayer, false);
  4265. // If we are called before the actual game start, there might be no current player
  4266. if (playerInfo && playerInfo->status != EPlayerStatus::INGAME)
  4267. {
  4268. // If player making turn has lost his turn must be over as well
  4269. states.setFlag(gs->currentPlayer, &PlayerStatus::makingTurn, false);
  4270. }
  4271. }
  4272. }
  4273. void CGameHandler::getVictoryLossMessage(PlayerColor player, const EVictoryLossCheckResult & victoryLossCheckResult, InfoWindow & out) const
  4274. {
  4275. out.player = player;
  4276. out.text.clear();
  4277. out.text << victoryLossCheckResult.messageToSelf;
  4278. // hackish, insert one player-specific string, if applicable
  4279. if (victoryLossCheckResult.messageToSelf.find("%s") != std::string::npos)
  4280. out.text.addReplacement(MetaString::COLOR, player.getNum());
  4281. out.components.push_back(Component(Component::FLAG, player.getNum(), 0, 0));
  4282. }
  4283. bool CGameHandler::dig( const CGHeroInstance *h )
  4284. {
  4285. for (auto i = gs->map->objects.cbegin(); i != gs->map->objects.cend(); i++) //unflag objs
  4286. {
  4287. if(*i && (*i)->ID == Obj::HOLE && (*i)->pos == h->getPosition())
  4288. {
  4289. complain("Cannot dig - there is already a hole under the hero!");
  4290. return false;
  4291. }
  4292. }
  4293. if(h->diggingStatus() != EDiggingStatus::CAN_DIG) //checks for terrain and movement
  4294. COMPLAIN_RETF("Hero cannot dig (error code %d)!", h->diggingStatus());
  4295. //create a hole
  4296. NewObject no;
  4297. no.ID = Obj::HOLE;
  4298. no.pos = h->getPosition();
  4299. no.subID = 0;
  4300. sendAndApply(&no);
  4301. //take MPs
  4302. SetMovePoints smp;
  4303. smp.hid = h->id;
  4304. smp.val = 0;
  4305. sendAndApply(&smp);
  4306. InfoWindow iw;
  4307. iw.player = h->tempOwner;
  4308. if(gs->map->grailPos == h->getPosition())
  4309. {
  4310. iw.text.addTxt(MetaString::GENERAL_TXT, 58); //"Congratulations! After spending many hours digging here, your hero has uncovered the "
  4311. iw.text.addTxt(MetaString::ART_NAMES, ArtifactID::GRAIL);
  4312. iw.soundID = soundBase::ULTIMATEARTIFACT;
  4313. giveHeroNewArtifact(h, VLC->arth->artifacts[ArtifactID::GRAIL], ArtifactPosition::PRE_FIRST); //give grail
  4314. sendAndApply(&iw);
  4315. iw.soundID = soundBase::invalid;
  4316. iw.text.clear();
  4317. iw.text.addTxt(MetaString::ART_DESCR, ArtifactID::GRAIL);
  4318. sendAndApply(&iw);
  4319. }
  4320. else
  4321. {
  4322. iw.text.addTxt(MetaString::GENERAL_TXT, 59); //"Nothing here. \n Where could it be?"
  4323. iw.soundID = soundBase::Dig;
  4324. sendAndApply(&iw);
  4325. }
  4326. return true;
  4327. }
  4328. void CGameHandler::attackCasting(const BattleAttack & bat, Bonus::BonusType attackMode, const CStack * attacker)
  4329. {
  4330. if(attacker->hasBonusOfType(attackMode))
  4331. {
  4332. std::set<SpellID> spellsToCast;
  4333. TBonusListPtr spells = attacker->getBonuses(Selector::type(attackMode));
  4334. for(const Bonus *sf : *spells)
  4335. {
  4336. spellsToCast.insert (SpellID(sf->subtype));
  4337. }
  4338. for(SpellID spellID : spellsToCast)
  4339. {
  4340. const CStack * oneOfAttacked = nullptr;
  4341. for (auto & elem : bat.bsa)
  4342. {
  4343. if (elem.newAmount > 0 && !elem.isSecondary()) //apply effects only to first target stack if it's alive
  4344. {
  4345. oneOfAttacked = gs->curB->battleGetStackByID(elem.stackAttacked);
  4346. break;
  4347. }
  4348. }
  4349. bool castMe = false;
  4350. if(oneOfAttacked == nullptr) //all attacked creatures have been killed
  4351. return;
  4352. int spellLevel = 0;
  4353. TBonusListPtr spellsByType = attacker->getBonuses(Selector::typeSubtype(attackMode, spellID));
  4354. for(const Bonus *sf : *spellsByType)
  4355. {
  4356. vstd::amax(spellLevel, sf->additionalInfo % 1000); //pick highest level
  4357. int meleeRanged = sf->additionalInfo / 1000;
  4358. if (meleeRanged == 0 || (meleeRanged == 1 && bat.shot()) || (meleeRanged == 2 && !bat.shot()))
  4359. castMe = true;
  4360. }
  4361. int chance = attacker->valOfBonuses((Selector::typeSubtype(attackMode, spellID)));
  4362. vstd::amin (chance, 100);
  4363. const CSpell * spell = SpellID(spellID).toSpell();
  4364. if(gs->curB->battleCanCastThisSpellHere(attacker, spell, ECastingMode::AFTER_ATTACK_CASTING, oneOfAttacked->position) != ESpellCastProblem::OK)
  4365. continue;
  4366. //check if spell should be cast (probability handling)
  4367. if(gs->getRandomGenerator().nextInt(99) >= chance)
  4368. continue;
  4369. //casting
  4370. if (castMe) //stacks use 0 spell power. If needed, default = 3 or custom value is used
  4371. {
  4372. BattleSpellCastParameters parameters(gs->curB, attacker, spell);
  4373. parameters.spellLvl = spellLevel;
  4374. parameters.effectLevel = spellLevel;
  4375. parameters.aimToStack(oneOfAttacked);
  4376. parameters.mode = ECastingMode::AFTER_ATTACK_CASTING;
  4377. parameters.selectedStack = nullptr;
  4378. spell->battleCast(spellEnv, parameters);
  4379. }
  4380. }
  4381. }
  4382. }
  4383. void CGameHandler::handleAttackBeforeCasting (const BattleAttack & bat)
  4384. {
  4385. const CStack * attacker = gs->curB->battleGetStackByID(bat.stackAttacking);
  4386. attackCasting(bat, Bonus::SPELL_BEFORE_ATTACK, attacker); //no death stare / acid breath needed?
  4387. }
  4388. void CGameHandler::handleAfterAttackCasting( const BattleAttack & bat )
  4389. {
  4390. const CStack * attacker = gs->curB->battleGetStackByID(bat.stackAttacking);
  4391. if (!attacker) //could be already dead
  4392. return;
  4393. auto cast = [=](SpellID spellID, int power)
  4394. {
  4395. const CSpell * spell = SpellID(spellID).toSpell();
  4396. BattleSpellCastParameters parameters(gs->curB, attacker, spell);
  4397. parameters.spellLvl = 0;
  4398. parameters.effectLevel = 0;
  4399. parameters.aimToStack(gs->curB->battleGetStackByID(bat.bsa.at(0).stackAttacked));
  4400. parameters.effectPower = power;
  4401. parameters.mode = ECastingMode::AFTER_ATTACK_CASTING;
  4402. parameters.selectedStack = nullptr;
  4403. spell->battleCast(this->spellEnv, parameters);
  4404. };
  4405. attackCasting(bat, Bonus::SPELL_AFTER_ATTACK, attacker);
  4406. if(bat.bsa.at(0).newAmount <= 0)
  4407. {
  4408. //don't try death stare or acid breath on dead stack (crash!)
  4409. return;
  4410. }
  4411. if (attacker->hasBonusOfType(Bonus::DEATH_STARE) && bat.bsa.size())
  4412. {
  4413. // mechanics of Death Stare as in H3:
  4414. // each gorgon have 10% chance to kill (counted separately in H3) -> binomial distribution
  4415. //original formula x = min(x, (gorgons_count + 9)/10);
  4416. double chanceToKill = attacker->valOfBonuses(Bonus::DEATH_STARE, 0) / 100.0f;
  4417. vstd::amin(chanceToKill, 1); //cap at 100%
  4418. std::binomial_distribution<> distribution(attacker->count, chanceToKill);
  4419. std::mt19937 rng(std::time(nullptr));
  4420. int staredCreatures = distribution(rng);
  4421. double cap = 1 / std::max(chanceToKill, (double)(0.01));//don't divide by 0
  4422. int maxToKill = (attacker->count + cap - 1) / cap; //not much more than chance * count
  4423. vstd::amin(staredCreatures, maxToKill);
  4424. staredCreatures += (attacker->level() * attacker->valOfBonuses(Bonus::DEATH_STARE, 1)) / gs->curB->battleGetStackByID(bat.bsa.at(0).stackAttacked)->level();
  4425. if (staredCreatures)
  4426. {
  4427. if (bat.bsa.at(0).newAmount > 0) //TODO: death stare was not originally available for multiple-hex attacks, but...
  4428. cast(SpellID::DEATH_STARE, staredCreatures);
  4429. }
  4430. }
  4431. int acidDamage = 0;
  4432. TBonusListPtr acidBreath = attacker->getBonuses(Selector::type(Bonus::ACID_BREATH));
  4433. for(const Bonus *b : *acidBreath)
  4434. {
  4435. if (b->additionalInfo > gs->getRandomGenerator().nextInt(99))
  4436. acidDamage += b->val;
  4437. }
  4438. if (acidDamage)
  4439. {
  4440. cast(SpellID::ACID_BREATH_DAMAGE, acidDamage * attacker->count);
  4441. }
  4442. }
  4443. bool CGameHandler::castSpell(const CGHeroInstance *h, SpellID spellID, const int3 &pos)
  4444. {
  4445. const CSpell *s = spellID.toSpell();
  4446. AdventureSpellCastParameters p;
  4447. p.caster = h;
  4448. p.pos = pos;
  4449. return s->adventureCast(spellEnv, p);
  4450. }
  4451. void CGameHandler::visitObjectOnTile(const TerrainTile &t, const CGHeroInstance * h)
  4452. {
  4453. if (!t.visitableObjects.empty())
  4454. {
  4455. //to prevent self-visiting heroes on space press
  4456. if(t.visitableObjects.back() != h)
  4457. objectVisited(t.visitableObjects.back(), h);
  4458. else if(t.visitableObjects.size() > 1)
  4459. objectVisited(*(t.visitableObjects.end()-2),h);
  4460. }
  4461. }
  4462. bool CGameHandler::sacrificeCreatures(const IMarket *market, const CGHeroInstance *hero, SlotID slot, ui32 count)
  4463. {
  4464. int oldCount = hero->getStackCount(slot);
  4465. if(oldCount < count)
  4466. COMPLAIN_RET("Not enough creatures to sacrifice!")
  4467. else if(oldCount == count && hero->stacksCount() == 1 && hero->needsLastStack())
  4468. COMPLAIN_RET("Cannot sacrifice last creature!");
  4469. int crid = hero->getStack(slot).type->idNumber;
  4470. changeStackCount(StackLocation(hero, slot), -count);
  4471. int dump, exp;
  4472. market->getOffer(crid, 0, dump, exp, EMarketMode::CREATURE_EXP);
  4473. exp *= count;
  4474. changePrimSkill(hero, PrimarySkill::EXPERIENCE, hero->calculateXp(exp));
  4475. return true;
  4476. }
  4477. bool CGameHandler::sacrificeArtifact(const IMarket * m, const CGHeroInstance * hero, ArtifactPosition slot)
  4478. {
  4479. ArtifactLocation al(hero, slot);
  4480. const CArtifactInstance *a = al.getArt();
  4481. if(!a)
  4482. COMPLAIN_RET("Cannot find artifact to sacrifice!");
  4483. int dmp, expToGive;
  4484. m->getOffer(hero->getArtTypeId(slot), 0, dmp, expToGive, EMarketMode::ARTIFACT_EXP);
  4485. removeArtifact(al);
  4486. changePrimSkill(hero, PrimarySkill::EXPERIENCE, expToGive);
  4487. return true;
  4488. }
  4489. void CGameHandler::makeStackDoNothing(const CStack * next)
  4490. {
  4491. BattleAction doNothing;
  4492. doNothing.actionType = Battle::NO_ACTION;
  4493. doNothing.additionalInfo = 0;
  4494. doNothing.destinationTile = -1;
  4495. doNothing.side = !next->attackerOwned;
  4496. doNothing.stackNumber = next->ID;
  4497. makeAutomaticAction(next, doNothing);
  4498. }
  4499. bool CGameHandler::insertNewStack(const StackLocation &sl, const CCreature *c, TQuantity count)
  4500. {
  4501. if(sl.army->hasStackAtSlot(sl.slot))
  4502. COMPLAIN_RET("Slot is already taken!");
  4503. if(!sl.slot.validSlot())
  4504. COMPLAIN_RET("Cannot insert stack to that slot!");
  4505. InsertNewStack ins;
  4506. ins.sl = sl;
  4507. ins.stack = CStackBasicDescriptor(c, count);
  4508. sendAndApply(&ins);
  4509. return true;
  4510. }
  4511. bool CGameHandler::eraseStack(const StackLocation &sl, bool forceRemoval/* = false*/)
  4512. {
  4513. if(!sl.army->hasStackAtSlot(sl.slot))
  4514. COMPLAIN_RET("Cannot find a stack to erase");
  4515. if(sl.army->stacksCount() == 1 //from the last stack
  4516. && sl.army->needsLastStack() //that must be left
  4517. && !forceRemoval) //ignore above conditions if we are forcing removal
  4518. {
  4519. COMPLAIN_RET("Cannot erase the last stack!");
  4520. }
  4521. EraseStack es;
  4522. es.sl = sl;
  4523. sendAndApply(&es);
  4524. return true;
  4525. }
  4526. bool CGameHandler::changeStackCount(const StackLocation &sl, TQuantity count, bool absoluteValue /*= false*/)
  4527. {
  4528. TQuantity currentCount = sl.army->getStackCount(sl.slot);
  4529. if((absoluteValue && count < 0)
  4530. || (!absoluteValue && -count > currentCount))
  4531. {
  4532. COMPLAIN_RET("Cannot take more stacks than present!");
  4533. }
  4534. if((currentCount == -count && !absoluteValue)
  4535. || (!count && absoluteValue))
  4536. {
  4537. eraseStack(sl);
  4538. }
  4539. else
  4540. {
  4541. ChangeStackCount csc;
  4542. csc.sl = sl;
  4543. csc.count = count;
  4544. csc.absoluteValue = absoluteValue;
  4545. sendAndApply(&csc);
  4546. }
  4547. return true;
  4548. }
  4549. bool CGameHandler::addToSlot(const StackLocation &sl, const CCreature *c, TQuantity count)
  4550. {
  4551. const CCreature *slotC = sl.army->getCreature(sl.slot);
  4552. if(!slotC) //slot is empty
  4553. insertNewStack(sl, c, count);
  4554. else if(c == slotC)
  4555. changeStackCount(sl, count);
  4556. else
  4557. {
  4558. COMPLAIN_RET("Cannot add " + c->namePl + " to slot " + boost::lexical_cast<std::string>(sl.slot) + "!");
  4559. }
  4560. return true;
  4561. }
  4562. void CGameHandler::tryJoiningArmy(const CArmedInstance *src, const CArmedInstance *dst, bool removeObjWhenFinished, bool allowMerging)
  4563. {
  4564. if(removeObjWhenFinished)
  4565. removeAfterVisit(src);
  4566. if(!src->canBeMergedWith(*dst, allowMerging))
  4567. {
  4568. if (allowMerging) //do that, add all matching creatures.
  4569. {
  4570. bool cont = true;
  4571. while (cont)
  4572. {
  4573. for(auto i = src->stacks.begin(); i != src->stacks.end(); i++)//while there are unmoved creatures
  4574. {
  4575. SlotID pos = dst->getSlotFor(i->second->type);
  4576. if(pos.validSlot())
  4577. {
  4578. moveStack(StackLocation(src, i->first), StackLocation(dst, pos));
  4579. cont = true;
  4580. break; //or iterator crashes
  4581. }
  4582. cont = false;
  4583. }
  4584. }
  4585. }
  4586. showGarrisonDialog(src->id, dst->id, true); //show garrison window and optionally remove ourselves from map when player ends
  4587. }
  4588. else //merge
  4589. {
  4590. moveArmy(src, dst, allowMerging);
  4591. }
  4592. }
  4593. bool CGameHandler::moveStack(const StackLocation &src, const StackLocation &dst, TQuantity count)
  4594. {
  4595. if(!src.army->hasStackAtSlot(src.slot))
  4596. COMPLAIN_RET("No stack to move!");
  4597. if(dst.army->hasStackAtSlot(dst.slot) && dst.army->getCreature(dst.slot) != src.army->getCreature(src.slot))
  4598. COMPLAIN_RET("Cannot move: stack of different type at destination pos!");
  4599. if(!dst.slot.validSlot())
  4600. COMPLAIN_RET("Cannot move stack to that slot!");
  4601. if(count == -1)
  4602. {
  4603. count = src.army->getStackCount(src.slot);
  4604. }
  4605. if(src.army != dst.army //moving away
  4606. && count == src.army->getStackCount(src.slot) //all creatures
  4607. && src.army->stacksCount() == 1 //from the last stack
  4608. && src.army->needsLastStack()) //that must be left
  4609. {
  4610. COMPLAIN_RET("Cannot move away the last creature!");
  4611. }
  4612. RebalanceStacks rs;
  4613. rs.src = src;
  4614. rs.dst = dst;
  4615. rs.count = count;
  4616. sendAndApply(&rs);
  4617. return true;
  4618. }
  4619. bool CGameHandler::swapStacks(const StackLocation &sl1, const StackLocation &sl2)
  4620. {
  4621. if(!sl1.army->hasStackAtSlot(sl1.slot))
  4622. return moveStack(sl2, sl1);
  4623. else if(!sl2.army->hasStackAtSlot(sl2.slot))
  4624. return moveStack(sl1, sl2);
  4625. else
  4626. {
  4627. SwapStacks ss;
  4628. ss.sl1 = sl1;
  4629. ss.sl2 = sl2;
  4630. sendAndApply(&ss);
  4631. return true;
  4632. }
  4633. }
  4634. void CGameHandler::runBattle()
  4635. {
  4636. setBattle(gs->curB);
  4637. assert(gs->curB);
  4638. //TODO: pre-tactic stuff, call scripts etc.
  4639. //tactic round
  4640. {
  4641. while(gs->curB->tacticDistance && !battleResult.get())
  4642. boost::this_thread::sleep(boost::posix_time::milliseconds(50));
  4643. }
  4644. //spells opening battle
  4645. for(int i = 0; i < 2; ++i)
  4646. {
  4647. auto h = gs->curB->battleGetFightingHero(i);
  4648. if(h && h->hasBonusOfType(Bonus::OPENING_BATTLE_SPELL))
  4649. {
  4650. TBonusListPtr bl = h->getBonuses(Selector::type(Bonus::OPENING_BATTLE_SPELL));
  4651. for (Bonus *b : *bl)
  4652. {
  4653. const CSpell * spell = SpellID(b->subtype).toSpell();
  4654. BattleSpellCastParameters parameters(gs->curB, h, spell);
  4655. parameters.spellLvl = 3;
  4656. parameters.effectLevel = 3;
  4657. parameters.aimToHex(BattleHex::INVALID);
  4658. parameters.mode = ECastingMode::PASSIVE_CASTING;
  4659. parameters.selectedStack = nullptr;
  4660. parameters.enchantPower = b->val;
  4661. spell->battleCast(spellEnv, parameters);
  4662. }
  4663. }
  4664. }
  4665. //main loop
  4666. while(!battleResult.get()) //till the end of the battle ;]
  4667. {
  4668. NEW_ROUND;
  4669. auto obstacles = gs->curB->obstacles; //we copy container, because we're going to modify it
  4670. for(auto &obstPtr : obstacles)
  4671. {
  4672. if(const SpellCreatedObstacle *sco = dynamic_cast<const SpellCreatedObstacle *>(obstPtr.get()))
  4673. if(sco->turnsRemaining == 0)
  4674. removeObstacle(*obstPtr);
  4675. }
  4676. const BattleInfo & curB = *gs->curB;
  4677. //remove clones after all mechanics and animations are handled!
  4678. std::set <const CStack*> stacksToRemove;
  4679. for (auto stack : curB.stacks)
  4680. {
  4681. if (stack->idDeadClone())
  4682. stacksToRemove.insert(stack);
  4683. }
  4684. for (auto stack : stacksToRemove)
  4685. {
  4686. BattleStacksRemoved bsr;
  4687. bsr.stackIDs.insert(stack->ID);
  4688. sendAndApply(&bsr);
  4689. }
  4690. //stack loop
  4691. const CStack *next;
  4692. while(!battleResult.get() && (next = curB.getNextStack()) && next->willMove())
  4693. {
  4694. //check for bad morale => freeze
  4695. int nextStackMorale = next->MoraleVal();
  4696. if( nextStackMorale < 0 &&
  4697. !(NBonus::hasOfType(gs->curB->battleGetFightingHero(0), Bonus::BLOCK_MORALE)
  4698. || NBonus::hasOfType(gs->curB->battleGetFightingHero(1), Bonus::BLOCK_MORALE)) //checking if gs->curB->heroes have (or don't have) morale blocking bonuses)
  4699. )
  4700. {
  4701. if(gs->getRandomGenerator().nextInt(23) < -2 * nextStackMorale)
  4702. {
  4703. //unit loses its turn - empty freeze action
  4704. BattleAction ba;
  4705. ba.actionType = Battle::BAD_MORALE;
  4706. ba.additionalInfo = 1;
  4707. ba.side = !next->attackerOwned;
  4708. ba.stackNumber = next->ID;
  4709. makeAutomaticAction(next, ba);
  4710. continue;
  4711. }
  4712. }
  4713. if(next->hasBonusOfType(Bonus::ATTACKS_NEAREST_CREATURE)) //while in berserk
  4714. { //fixme: stack should not attack itself
  4715. std::pair<const CStack *, int> attackInfo = curB.getNearestStack(next, boost::logic::indeterminate);
  4716. if(attackInfo.first != nullptr)
  4717. {
  4718. BattleAction attack;
  4719. attack.actionType = Battle::WALK_AND_ATTACK;
  4720. attack.side = !next->attackerOwned;
  4721. attack.stackNumber = next->ID;
  4722. attack.additionalInfo = attackInfo.first->position;
  4723. attack.destinationTile = attackInfo.second;
  4724. makeAutomaticAction(next, attack);
  4725. }
  4726. else
  4727. {
  4728. makeStackDoNothing(next);
  4729. }
  4730. continue;
  4731. }
  4732. const CGHeroInstance * curOwner = gs->curB->battleGetOwner(next);
  4733. if( (next->position < 0 || next->getCreature()->idNumber == CreatureID::BALLISTA) //arrow turret or ballista
  4734. && (!curOwner || curOwner->getSecSkillLevel(SecondarySkill::ARTILLERY) == 0)) //hero has no artillery
  4735. {
  4736. BattleAction attack;
  4737. attack.actionType = Battle::SHOOT;
  4738. attack.side = !next->attackerOwned;
  4739. attack.stackNumber = next->ID;
  4740. for(auto & elem : gs->curB->stacks)
  4741. {
  4742. if(elem->owner != next->owner && elem->isValidTarget())
  4743. {
  4744. attack.destinationTile = elem->position;
  4745. break;
  4746. }
  4747. }
  4748. makeAutomaticAction(next, attack);
  4749. continue;
  4750. }
  4751. if(next->getCreature()->idNumber == CreatureID::CATAPULT)
  4752. {
  4753. const auto & attackableBattleHexes = curB.getAttackableBattleHexes();
  4754. if(attackableBattleHexes.empty())
  4755. {
  4756. makeStackDoNothing(next);
  4757. continue;
  4758. }
  4759. if(!curOwner || curOwner->getSecSkillLevel(SecondarySkill::BALLISTICS) == 0)
  4760. {
  4761. BattleAction attack;
  4762. attack.destinationTile = *RandomGeneratorUtil::nextItem(attackableBattleHexes,
  4763. gs->getRandomGenerator());
  4764. attack.actionType = Battle::CATAPULT;
  4765. attack.additionalInfo = 0;
  4766. attack.side = !next->attackerOwned;
  4767. attack.stackNumber = next->ID;
  4768. makeAutomaticAction(next, attack);
  4769. continue;
  4770. }
  4771. }
  4772. if(next->getCreature()->idNumber == CreatureID::FIRST_AID_TENT)
  4773. {
  4774. TStacks possibleStacks = battleGetStacksIf([&](const CStack * s){
  4775. return s->owner == next->owner && s->canBeHealed();
  4776. });
  4777. if(!possibleStacks.size())
  4778. {
  4779. makeStackDoNothing(next);
  4780. continue;
  4781. }
  4782. if(!curOwner || curOwner->getSecSkillLevel(SecondarySkill::FIRST_AID) == 0) //no hero or hero has no first aid
  4783. {
  4784. range::random_shuffle(possibleStacks);
  4785. const CStack * toBeHealed = possibleStacks.front();
  4786. BattleAction heal;
  4787. heal.actionType = Battle::STACK_HEAL;
  4788. heal.additionalInfo = 0;
  4789. heal.destinationTile = toBeHealed->position;
  4790. heal.side = !next->attackerOwned;
  4791. heal.stackNumber = next->ID;
  4792. makeAutomaticAction(next, heal);
  4793. continue;
  4794. }
  4795. }
  4796. int numberOfAsks = 1;
  4797. bool breakOuter = false;
  4798. do
  4799. {//ask interface and wait for answer
  4800. if(!battleResult.get())
  4801. {
  4802. stackTurnTrigger(next); //various effects
  4803. if (vstd::contains(next->state, EBattleStackState::FEAR))
  4804. {
  4805. makeStackDoNothing(next); //end immediately if stack was affected by fear
  4806. }
  4807. else
  4808. {
  4809. logGlobal->traceStream() << "Activating " << next->nodeName();
  4810. auto nextId = next->ID;
  4811. BattleSetActiveStack sas;
  4812. sas.stack = nextId;
  4813. sendAndApply(&sas);
  4814. auto actionWasMade = [&]() -> bool
  4815. {
  4816. if(battleMadeAction.data)//active stack has made its action
  4817. return true;
  4818. if(battleResult.get())// battle is finished
  4819. return true;
  4820. if(next == nullptr)//active stack was been removed
  4821. return true;
  4822. return !next->alive();//active stack is dead
  4823. };
  4824. boost::unique_lock<boost::mutex> lock(battleMadeAction.mx);
  4825. battleMadeAction.data = false;
  4826. while(!actionWasMade())
  4827. {
  4828. battleMadeAction.cond.wait(lock);
  4829. if(battleGetStackByID(nextId, false) != next)
  4830. next = nullptr; //it may be removed, while we wait
  4831. }
  4832. }
  4833. }
  4834. if(battleResult.get()) //don't touch it, battle could be finished while waiting got action
  4835. {
  4836. breakOuter = true;
  4837. break;
  4838. }
  4839. //we're after action, all results applied
  4840. checkForBattleEnd(); //check if this action ended the battle
  4841. if(next != nullptr)
  4842. {
  4843. //check for good morale
  4844. nextStackMorale = next->MoraleVal();
  4845. if(!vstd::contains(next->state,EBattleStackState::HAD_MORALE) //only one extra move per turn possible
  4846. && !vstd::contains(next->state,EBattleStackState::DEFENDING)
  4847. && !next->waited()
  4848. && !vstd::contains(next->state, EBattleStackState::FEAR)
  4849. && next->alive()
  4850. && nextStackMorale > 0
  4851. && !(NBonus::hasOfType(gs->curB->battleGetFightingHero(0), Bonus::BLOCK_MORALE)
  4852. || NBonus::hasOfType(gs->curB->battleGetFightingHero(1), Bonus::BLOCK_MORALE)) //checking if gs->curB->heroes have (or don't have) morale blocking bonuses
  4853. )
  4854. {
  4855. if(gs->getRandomGenerator().nextInt(23) < nextStackMorale) //this stack hasn't got morale this turn
  4856. {
  4857. BattleTriggerEffect bte;
  4858. bte.stackID = next->ID;
  4859. bte.effect = Bonus::MORALE;
  4860. bte.val = 1;
  4861. bte.additionalInfo = 0;
  4862. sendAndApply(&bte); //play animation
  4863. ++numberOfAsks; //move this stack once more
  4864. }
  4865. }
  4866. }
  4867. --numberOfAsks;
  4868. } while (numberOfAsks > 0);
  4869. if (breakOuter)
  4870. {
  4871. break;
  4872. }
  4873. }
  4874. }
  4875. endBattle(gs->curB->tile, gs->curB->battleGetFightingHero(0), gs->curB->battleGetFightingHero(1));
  4876. }
  4877. bool CGameHandler::makeAutomaticAction(const CStack *stack, BattleAction &ba)
  4878. {
  4879. BattleSetActiveStack bsa;
  4880. bsa.stack = stack->ID;
  4881. bsa.askPlayerInterface = false;
  4882. sendAndApply(&bsa);
  4883. bool ret = makeBattleAction(ba);
  4884. checkForBattleEnd();
  4885. return ret;
  4886. }
  4887. void CGameHandler::giveHeroArtifact(const CGHeroInstance *h, const CArtifactInstance *a, ArtifactPosition pos)
  4888. {
  4889. assert(a->artType);
  4890. ArtifactLocation al;
  4891. al.artHolder = const_cast<CGHeroInstance*>(h);
  4892. ArtifactPosition slot = ArtifactPosition::PRE_FIRST;
  4893. if(pos < 0)
  4894. {
  4895. if(pos == ArtifactPosition::FIRST_AVAILABLE)
  4896. slot = a->firstAvailableSlot(h);
  4897. else
  4898. slot = a->firstBackpackSlot(h);
  4899. }
  4900. else
  4901. {
  4902. slot = pos;
  4903. }
  4904. al.slot = slot;
  4905. if(slot < 0 || !a->canBePutAt(al))
  4906. {
  4907. complain("Cannot put artifact in that slot!");
  4908. return;
  4909. }
  4910. putArtifact(al, a);
  4911. }
  4912. void CGameHandler::putArtifact(const ArtifactLocation &al, const CArtifactInstance *a)
  4913. {
  4914. PutArtifact pa;
  4915. pa.art = a;
  4916. pa.al = al;
  4917. sendAndApply(&pa);
  4918. }
  4919. void CGameHandler::giveHeroNewArtifact(const CGHeroInstance *h, const CArtifact *artType, ArtifactPosition pos)
  4920. {
  4921. CArtifactInstance *a = nullptr;
  4922. if(!artType->constituents)
  4923. {
  4924. a = new CArtifactInstance();
  4925. }
  4926. else
  4927. {
  4928. a = new CCombinedArtifactInstance();
  4929. }
  4930. a->artType = artType; //*NOT* via settype -> all bonus-related stuff must be done by NewArtifact apply
  4931. NewArtifact na;
  4932. na.art = a;
  4933. sendAndApply(&na); // -> updates a!!!, will create a on other machines
  4934. giveHeroArtifact(h, a, pos);
  4935. }
  4936. void CGameHandler::setBattleResult(BattleResult::EResult resultType, int victoriusSide)
  4937. {
  4938. boost::unique_lock<boost::mutex> guard(battleResult.mx);
  4939. if(battleResult.data)
  4940. {
  4941. complain((boost::format("The battle result has been already set (to %d, asked to %d)")
  4942. % battleResult.data->result % resultType).str());
  4943. return;
  4944. }
  4945. auto br = new BattleResult;
  4946. br->result = resultType;
  4947. br->winner = victoriusSide; //surrendering side loses
  4948. gs->curB->calculateCasualties(br->casualties);
  4949. battleResult.data = br;
  4950. }
  4951. void CGameHandler::commitPackage( CPackForClient *pack )
  4952. {
  4953. sendAndApply(pack);
  4954. }
  4955. void CGameHandler::spawnWanderingMonsters(CreatureID creatureID)
  4956. {
  4957. std::vector<int3>::iterator tile;
  4958. std::vector<int3> tiles;
  4959. getFreeTiles(tiles);
  4960. ui32 amount = tiles.size() / 200; //Chance is 0.5% for each tile
  4961. std::random_shuffle(tiles.begin(), tiles.end());
  4962. logGlobal->traceStream() << "Spawning wandering monsters. Found " << tiles.size() << " free tiles. Creature type: " << creatureID;
  4963. const CCreature *cre = VLC->creh->creatures.at(creatureID);
  4964. for (int i = 0; i < amount; ++i)
  4965. {
  4966. tile = tiles.begin();
  4967. logGlobal->traceStream() << "\tSpawning monster at " << *tile;
  4968. putNewMonster(creatureID, cre->getRandomAmount(std::rand), *tile);
  4969. tiles.erase(tile); //not use it again
  4970. }
  4971. }
  4972. void CGameHandler::removeObstacle(const CObstacleInstance &obstacle)
  4973. {
  4974. ObstaclesRemoved obsRem;
  4975. obsRem.obstacles.insert(obstacle.uniqueID);
  4976. sendAndApply(&obsRem);
  4977. }
  4978. void CGameHandler::synchronizeArtifactHandlerLists()
  4979. {
  4980. UpdateArtHandlerLists uahl;
  4981. uahl.treasures = VLC->arth->treasures;
  4982. uahl.minors = VLC->arth->minors;
  4983. uahl.majors = VLC->arth->majors;
  4984. uahl.relics = VLC->arth->relics;
  4985. sendAndApply(&uahl);
  4986. }
  4987. bool CGameHandler::isValidObject(const CGObjectInstance *obj) const
  4988. {
  4989. return vstd::contains(gs->map->objects, obj);
  4990. }
  4991. bool CGameHandler::isBlockedByQueries(const CPack *pack, PlayerColor player)
  4992. {
  4993. if(!strcmp(typeid(*pack).name(), typeid(PlayerMessage).name()))
  4994. return false;
  4995. auto query = queries.topQuery(player);
  4996. if(query && query->blocksPack(pack))
  4997. {
  4998. complain(boost::str(boost::format("Player %s has to answer queries before attempting any further actions. Top query is %s!") % player % query->toString()));
  4999. return true;
  5000. }
  5001. return false;
  5002. }
  5003. void CGameHandler::removeAfterVisit(const CGObjectInstance *object)
  5004. {
  5005. //If the object is being visited, there must be a matching query
  5006. for(const auto &query : queries.allQueries())
  5007. {
  5008. if(auto someVistQuery = std::dynamic_pointer_cast<CObjectVisitQuery>(query))
  5009. {
  5010. if(someVistQuery->visitedObject == object)
  5011. {
  5012. someVistQuery->removeObjectAfterVisit = true;
  5013. return;
  5014. }
  5015. }
  5016. };
  5017. //If we haven't returned so far, there is no query and no visit, call was wrong
  5018. assert("This function needs to be called during the object visit!");
  5019. }
  5020. void CGameHandler::changeFogOfWar(int3 center, ui32 radius, PlayerColor player, bool hide)
  5021. {
  5022. std::unordered_set<int3, ShashInt3> tiles;
  5023. getTilesInRange(tiles, center, radius, player, hide? -1 : 1);
  5024. if (hide)
  5025. {
  5026. std::unordered_set<int3, ShashInt3> observedTiles; //do not hide tiles observed by heroes. May lead to disastrous AI problems
  5027. auto p = gs->getPlayer(player);
  5028. for (auto h : p->heroes)
  5029. {
  5030. getTilesInRange(observedTiles, h->getSightCenter(), h->getSightRadious(), h->tempOwner, -1);
  5031. }
  5032. for (auto t : p->towns)
  5033. {
  5034. getTilesInRange(observedTiles, t->getSightCenter(), t->getSightRadious(), t->tempOwner, -1);
  5035. }
  5036. for (auto tile : observedTiles)
  5037. vstd::erase_if_present (tiles, tile);
  5038. }
  5039. changeFogOfWar(tiles, player, hide);
  5040. }
  5041. void CGameHandler::changeFogOfWar(std::unordered_set<int3, ShashInt3> &tiles, PlayerColor player, bool hide)
  5042. {
  5043. FoWChange fow;
  5044. fow.tiles = tiles;
  5045. fow.player = player;
  5046. fow.mode = hide? 0 : 1;
  5047. sendAndApply(&fow);
  5048. }
  5049. bool CGameHandler::isVisitCoveredByAnotherQuery(const CGObjectInstance *obj, const CGHeroInstance *hero)
  5050. {
  5051. if(auto topQuery = queries.topQuery(hero->getOwner()))
  5052. if(auto visit = std::dynamic_pointer_cast<const CObjectVisitQuery>(topQuery))
  5053. return !(visit->visitedObject == obj && visit->visitingHero == hero);
  5054. return true;
  5055. }
  5056. void CGameHandler::duelFinished()
  5057. {
  5058. auto si = getStartInfo();
  5059. auto getName = [&](int i){ return si->getIthPlayersSettings(gs->curB->sides.at(i).color).name; };
  5060. int casualtiesPoints = 0;
  5061. logGlobal->debugStream() << boost::format("Winner side %d\nWinner casualties:")
  5062. % (int)battleResult.data->winner;
  5063. for(auto & elem : battleResult.data->casualties[battleResult.data->winner])
  5064. {
  5065. const CCreature *c = VLC->creh->creatures[elem.first];
  5066. logGlobal->debugStream() << boost::format("\t* %d of %s") % elem.second % c->namePl;
  5067. casualtiesPoints += c->AIValue * elem.second;
  5068. }
  5069. logGlobal->debugStream() << boost::format("Total casualties points: %d") % casualtiesPoints;
  5070. time_t timeNow;
  5071. time(&timeNow);
  5072. std::ofstream out(cmdLineOptions["resultsFile"].as<std::string>(), std::ios::app);
  5073. if(out)
  5074. {
  5075. out << boost::format("%s\t%s\t%s\t%d\t%d\t%d\t%s\n") % si->mapname % getName(0) % getName(1)
  5076. % battleResult.data->winner % battleResult.data->result % casualtiesPoints
  5077. % asctime(localtime(&timeNow));
  5078. }
  5079. else
  5080. {
  5081. logGlobal->errorStream() << "Cannot open to write " << cmdLineOptions["resultsFile"].as<std::string>();
  5082. }
  5083. CSaveFile resultFile("result.vdrst");
  5084. resultFile << *battleResult.data;
  5085. BattleResultsApplied resultsApplied;
  5086. resultsApplied.player1 = finishingBattle->victor;
  5087. resultsApplied.player2 = finishingBattle->loser;
  5088. sendAndApply(&resultsApplied);
  5089. return;
  5090. }
  5091. CasualtiesAfterBattle::CasualtiesAfterBattle(const CArmedInstance * _army, BattleInfo *bat):
  5092. army(_army)
  5093. {
  5094. heroWithDeadCommander = ObjectInstanceID();
  5095. PlayerColor color = army->tempOwner;
  5096. if(color == PlayerColor::UNFLAGGABLE)
  5097. color = PlayerColor::NEUTRAL;
  5098. auto killStack = [&, this](const SlotID slot, const CStackInstance * instance)
  5099. {
  5100. StackLocation sl(army, slot);
  5101. newStackCounts.push_back(TStackAndItsNewCount(sl, 0));
  5102. if(nullptr == instance)
  5103. return;
  5104. auto c = dynamic_cast <const CCommanderInstance *>(instance);
  5105. if (c) //switch commander status to dead
  5106. {
  5107. auto h = dynamic_cast <const CGHeroInstance *>(army);
  5108. if (h && h->commander == c)
  5109. heroWithDeadCommander = army->id; //TODO: unify commander handling
  5110. }
  5111. };
  5112. //1. Find removed stacks.
  5113. for(const auto & slotInfo : army->stacks)
  5114. {
  5115. const SlotID slot = slotInfo.first;
  5116. const CStackInstance * instance = slotInfo.second;
  5117. if(nullptr != instance)//just in case
  5118. {
  5119. bool found = false;
  5120. for(const CStack * sta : bat->stacks)
  5121. {
  5122. if(sta->base == instance)
  5123. {
  5124. found = true;
  5125. break;
  5126. }
  5127. }
  5128. //stack in this slot was removed == it is dead
  5129. if(!found)
  5130. killStack(slot, instance);
  5131. }
  5132. }
  5133. for(CStack *st : bat->stacks)
  5134. {
  5135. if(vstd::contains(st->state, EBattleStackState::SUMMONED)) //don't take into account summoned stacks
  5136. continue;
  5137. if (st->owner != color) //remove only our stacks
  5138. continue;
  5139. //FIXME: this info is also used in BattleInfo::calculateCasualties, refactor
  5140. st->count = std::max (0, st->count - st->resurrected);
  5141. if (!st->count && !st->base) //we can imagine stacks of war machines that are not spawned by artifacts?
  5142. {
  5143. auto warMachine = VLC->arth->creatureToMachineID(st->type->idNumber);
  5144. //catapult artifact remain even if "creature" killed in siege
  5145. if(warMachine != ArtifactID::NONE && warMachine != ArtifactID::CATAPULT)
  5146. {
  5147. auto hero = dynamic_ptr_cast<CGHeroInstance> (army);
  5148. if (hero)
  5149. removedWarMachines.push_back (ArtifactLocation(hero, hero->getArtPos(warMachine, true)));
  5150. }
  5151. }
  5152. if(army->slotEmpty(st->slot))
  5153. {
  5154. if(st->slot == SlotID::SUMMONED_SLOT_PLACEHOLDER && !vstd::contains(st->state, EBattleStackState::SUMMONED) && st->alive() && st->count > 0)
  5155. {
  5156. //this stack was permanently summoned
  5157. const CreatureID summonedType = st->type->idNumber;
  5158. summoned[summonedType] += st->count;
  5159. }
  5160. }
  5161. else
  5162. {
  5163. if(st->count == 0 || !st->alive())
  5164. {
  5165. killStack(st->slot, st->base);
  5166. }
  5167. else if(st->count < army->getStackCount(st->slot))
  5168. {
  5169. StackLocation sl(army, st->slot);
  5170. newStackCounts.push_back(TStackAndItsNewCount(sl, st->count));
  5171. }
  5172. }
  5173. }
  5174. }
  5175. void CasualtiesAfterBattle::updateArmy(CGameHandler *gh)
  5176. {
  5177. for(TStackAndItsNewCount &ncount : newStackCounts)
  5178. {
  5179. if(ncount.second > 0)
  5180. gh->changeStackCount(ncount.first, ncount.second, true);
  5181. else
  5182. gh->eraseStack(ncount.first, true);
  5183. }
  5184. for(auto summoned_iter : summoned)
  5185. {
  5186. SlotID slot = army->getSlotFor(summoned_iter.first);
  5187. if(slot.validSlot())
  5188. {
  5189. StackLocation location(army, slot);
  5190. gh->addToSlot(location, summoned_iter.first.toCreature(), summoned_iter.second);
  5191. }
  5192. else
  5193. {
  5194. //even if it will be possible to summon anything permanently it should be checked for free slot
  5195. //necromancy is handled separately
  5196. gh->complain("No free slot to put summoned creature");
  5197. }
  5198. }
  5199. for (auto al : removedWarMachines)
  5200. {
  5201. gh->removeArtifact(al);
  5202. }
  5203. if (heroWithDeadCommander != ObjectInstanceID())
  5204. {
  5205. SetCommanderProperty scp;
  5206. scp.heroid = heroWithDeadCommander;
  5207. scp.which = SetCommanderProperty::ALIVE;
  5208. scp.amount = 0;
  5209. gh->sendAndApply (&scp);
  5210. }
  5211. }
  5212. CGameHandler::FinishingBattleHelper::FinishingBattleHelper(std::shared_ptr<const CBattleQuery> Query, bool Duel, int RemainingBattleQueriesCount)
  5213. {
  5214. assert(Query->result);
  5215. assert(Query->bi);
  5216. auto &result = *Query->result;
  5217. auto &info = *Query->bi;
  5218. winnerHero = result.winner != 0 ? info.sides[1].hero : info.sides[0].hero;
  5219. loserHero = result.winner != 0 ? info.sides[0].hero : info.sides[1].hero;
  5220. victor = info.sides[result.winner].color;
  5221. loser = info.sides[!result.winner].color;
  5222. duel = Duel;
  5223. remainingBattleQueriesCount = RemainingBattleQueriesCount;
  5224. }
  5225. CGameHandler::FinishingBattleHelper::FinishingBattleHelper()
  5226. {
  5227. winnerHero = loserHero = nullptr;
  5228. }
  5229. ///ServerSpellCastEnvironment
  5230. ServerSpellCastEnvironment::ServerSpellCastEnvironment(CGameHandler * gh): gh(gh)
  5231. {
  5232. }
  5233. void ServerSpellCastEnvironment::sendAndApply(CPackForClient * info) const
  5234. {
  5235. gh->sendAndApply(info);
  5236. }
  5237. CRandomGenerator & ServerSpellCastEnvironment::getRandomGenerator() const
  5238. {
  5239. return gh->gameState()->getRandomGenerator();
  5240. }
  5241. void ServerSpellCastEnvironment::complain(const std::string& problem) const
  5242. {
  5243. gh->complain(problem);
  5244. }
  5245. const CGameInfoCallback * ServerSpellCastEnvironment::getCb() const
  5246. {
  5247. return gh;
  5248. }
  5249. const CMap * ServerSpellCastEnvironment::getMap() const
  5250. {
  5251. return gh->gameState()->map;
  5252. }
  5253. bool ServerSpellCastEnvironment::moveHero(ObjectInstanceID hid, int3 dst, ui8 teleporting, PlayerColor asker) const
  5254. {
  5255. return gh->moveHero(hid, dst, teleporting, false, asker);
  5256. }