Clone.cpp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * Clone.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 "Clone.h"
  12. #include "Registry.h"
  13. #include "../ISpellMechanics.h"
  14. #include "../../NetPacks.h"
  15. #include "../../battle/CBattleInfoCallback.h"
  16. #include "../../battle/CUnitState.h"
  17. #include "../../serializer/JsonSerializeFormat.h"
  18. VCMI_LIB_NAMESPACE_BEGIN
  19. static const std::string EFFECT_NAME = "core:clone";
  20. namespace spells
  21. {
  22. namespace effects
  23. {
  24. VCMI_REGISTER_SPELL_EFFECT(Clone, EFFECT_NAME);
  25. void Clone::apply(ServerCallback * server, const Mechanics * m, const EffectTarget & target) const
  26. {
  27. for(const Destination & dest : target)
  28. {
  29. const battle::Unit * clonedStack = dest.unitValue;
  30. //we shall have all targets to be stacks
  31. if(!clonedStack)
  32. {
  33. server->complain("No target stack to clone! Invalid effect target transformation.");
  34. continue;
  35. }
  36. //should not happen, but in theory we might have stack took damage from other effects
  37. if(clonedStack->getCount() < 1)
  38. continue;
  39. auto hex = m->battle()->getAvaliableHex(clonedStack->creatureId(), m->casterSide, clonedStack->getPosition());
  40. if(!hex.isValid())
  41. {
  42. server->complain("No place to put new clone!");
  43. break;
  44. }
  45. auto unitId = m->battle()->battleNextUnitId();
  46. battle::UnitInfo info;
  47. info.id = unitId;
  48. info.count = clonedStack->getCount();
  49. info.type = clonedStack->creatureId();
  50. info.side = m->casterSide;
  51. info.position = hex;
  52. info.summoned = true;
  53. BattleUnitsChanged pack;
  54. pack.changedStacks.emplace_back(info.id, UnitChanges::EOperation::ADD);
  55. info.save(pack.changedStacks.back().data);
  56. server->apply(&pack);
  57. //TODO: use BattleUnitsChanged with UPDATE operation
  58. BattleUnitsChanged cloneFlags;
  59. const auto *cloneUnit = m->battle()->battleGetUnitByID(unitId);
  60. if(!cloneUnit)
  61. {
  62. server->complain("[Internal error] Cloned unit missing.");
  63. continue;
  64. }
  65. auto cloneState = cloneUnit->acquireState();
  66. cloneState->cloned = true;
  67. cloneFlags.changedStacks.emplace_back(cloneState->unitId(), UnitChanges::EOperation::RESET_STATE);
  68. cloneState->save(cloneFlags.changedStacks.back().data);
  69. auto originalState = clonedStack->acquireState();
  70. originalState->cloneID = unitId;
  71. cloneFlags.changedStacks.emplace_back(originalState->unitId(), UnitChanges::EOperation::RESET_STATE);
  72. originalState->save(cloneFlags.changedStacks.back().data);
  73. server->apply(&cloneFlags);
  74. SetStackEffect sse;
  75. Bonus lifeTimeMarker(Bonus::N_TURNS, Bonus::NONE, Bonus::SPELL_EFFECT, 0, SpellID::CLONE); //TODO: use special bonus type
  76. lifeTimeMarker.turnsRemain = m->getEffectDuration();
  77. std::vector<Bonus> buffer;
  78. buffer.push_back(lifeTimeMarker);
  79. sse.toAdd.emplace_back(unitId, buffer);
  80. server->apply(&sse);
  81. }
  82. }
  83. bool Clone::isReceptive(const Mechanics * m, const battle::Unit * s) const
  84. {
  85. int creLevel = s->creatureLevel();
  86. if(creLevel > maxTier)
  87. return false;
  88. //use default algorithm only if there is no mechanics-related problem
  89. return UnitEffect::isReceptive(m, s);
  90. }
  91. bool Clone::isValidTarget(const Mechanics * m, const battle::Unit * s) const
  92. {
  93. //can't clone already cloned creature
  94. if(s->isClone())
  95. return false;
  96. //can`t clone if old clone still alive
  97. if(s->hasClone())
  98. return false;
  99. return UnitEffect::isValidTarget(m, s);
  100. }
  101. void Clone::serializeJsonUnitEffect(JsonSerializeFormat & handler)
  102. {
  103. handler.serializeInt("maxTier", maxTier);
  104. }
  105. }
  106. }
  107. VCMI_LIB_NAMESPACE_END