| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /*
- * ISpellMechanics.cpp, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #include "StdInc.h"
- #include "ISpellMechanics.h"
- #include "CDefaultSpellMechanics.h"
- #include "AdventureSpellMechanics.h"
- #include "BattleSpellMechanics.h"
- #include "CreatureSpellMechanics.h"
- ///ISpellMechanics
- ISpellMechanics::ISpellMechanics(CSpell * s):
- owner(s)
- {
- }
- ISpellMechanics * ISpellMechanics::createMechanics(CSpell * s)
- {
- switch (s->id)
- {
- case SpellID::ANTI_MAGIC:
- return new AntimagicMechanics(s);
- case SpellID::ACID_BREATH_DAMAGE:
- return new AcidBreathDamageMechanics(s);
- case SpellID::CHAIN_LIGHTNING:
- return new ChainLightningMechanics(s);
- case SpellID::CLONE:
- return new CloneMechanics(s);
- case SpellID::CURE:
- return new CureMechanics(s);
- case SpellID::DEATH_STARE:
- return new DeathStareMechanics(s);
- case SpellID::DISPEL:
- return new DispellMechanics(s);
- case SpellID::DISPEL_HELPFUL_SPELLS:
- return new DispellHelpfulMechanics(s);
- case SpellID::EARTHQUAKE:
- return new EarthquakeMechanics(s);
- case SpellID::FIRE_WALL:
- case SpellID::FORCE_FIELD:
- return new WallMechanics(s);
- case SpellID::HYPNOTIZE:
- return new HypnotizeMechanics(s);
- case SpellID::LAND_MINE:
- case SpellID::QUICKSAND:
- return new ObstacleMechanics(s);
- case SpellID::REMOVE_OBSTACLE:
- return new RemoveObstacleMechanics(s);
- case SpellID::SACRIFICE:
- return new SacrificeMechanics(s);
- case SpellID::SUMMON_FIRE_ELEMENTAL:
- case SpellID::SUMMON_EARTH_ELEMENTAL:
- case SpellID::SUMMON_WATER_ELEMENTAL:
- case SpellID::SUMMON_AIR_ELEMENTAL:
- return new SummonMechanics(s);
- case SpellID::TELEPORT:
- return new TeleportMechanics(s);
- case SpellID::SUMMON_BOAT:
- return new SummonBoatMechanics(s);
- case SpellID::SCUTTLE_BOAT:
- return new ScuttleBoatMechanics(s);
- case SpellID::DIMENSION_DOOR:
- return new DimensionDoorMechanics(s);
- case SpellID::FLY:
- case SpellID::WATER_WALK:
- case SpellID::VISIONS:
- case SpellID::DISGUISE:
- return new DefaultSpellMechanics(s); //implemented using bonus system
- case SpellID::TOWN_PORTAL:
- return new TownPortalMechanics(s);
- case SpellID::VIEW_EARTH:
- return new ViewEarthMechanics(s);
- case SpellID::VIEW_AIR:
- return new ViewAirMechanics(s);
- default:
- if(s->isRisingSpell())
- return new SpecialRisingSpellMechanics(s);
- else
- return new DefaultSpellMechanics(s);
- }
- }
|