CGameHandler.cpp 199 KB

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