annotate Conditions.cpp @ 2459:e5c88c2b02ab

Audio_GetFirstHardwareDigitalDriver
author Ritor1
date Wed, 30 Jul 2014 11:19:53 +0600
parents f4af3b203f65
children
rev   line source
2415
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2264
diff changeset
1 #define _CRTDBG_MAP_ALLOC
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2264
diff changeset
2 #include <stdlib.h>
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2264
diff changeset
3 #include <crtdbg.h>
f4af3b203f65 LOD.cpp cleaned and search memory corrupt
Ritor1
parents: 2264
diff changeset
4
2253
aff7a7b072b7 adding _CRT_SECURE_NO_WARNINGS to get rid of a few hundrer annoying warnings + adding count parameter to swprintf
Grumpy7
parents: 2187
diff changeset
5 #define _CRT_SECURE_NO_WARNINGS
1361
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
6 #pragma once
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
7 #include "Conditions.h"
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
8 #include "Party.h"
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
9 std::array<ConditionProcessor, 18> conditionArray =
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
10 {
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
11 // hint: condname, protfrommagic, gmprot, enchantment, ...
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
12 ConditionProcessor(Condition_Cursed, false, false, 0),
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
13 ConditionProcessor(Condition_Weak, true, false, 0),
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
14 ConditionProcessor(Condition_Sleep, false, false, 22, ITEM_ARTIFACT_YORUBA, EQUIP_ARMOUR),
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
15 ConditionProcessor(Condition_Fear, false, false, 0),
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
16 ConditionProcessor(Condition_Drunk, false, false, 0),
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
17 ConditionProcessor(Condition_Insane, false, false, 19, ITEM_ARTIFACT_YORUBA, EQUIP_ARMOUR, ITEM_ARTIFACT_CLOAK_OF_THE_SHEEP, EQUIP_CLOAK),
2187
9856c2f8f918 CastSpell continue
Ritor1
parents: 1563
diff changeset
18 ConditionProcessor(Condition_Poison_Weak, true, false, 21, ITEM_ARTIFACT_YORUBA, EQUIP_ARMOUR, ITEM_ARTIFACT_CLOAK_OF_THE_SHEEP, EQUIP_CLOAK),
9856c2f8f918 CastSpell continue
Ritor1
parents: 1563
diff changeset
19 ConditionProcessor(Condition_Disease_Weak, true, false, 18, ITEM_ARTIFACT_YORUBA, EQUIP_ARMOUR, ITEM_ARTIFACT_CLOAK_OF_THE_SHEEP, EQUIP_CLOAK),
9856c2f8f918 CastSpell continue
Ritor1
parents: 1563
diff changeset
20 ConditionProcessor(Condition_Poison_Medium, true, false, 21, ITEM_ARTIFACT_YORUBA, EQUIP_ARMOUR, ITEM_ARTIFACT_CLOAK_OF_THE_SHEEP, EQUIP_CLOAK),
9856c2f8f918 CastSpell continue
Ritor1
parents: 1563
diff changeset
21 ConditionProcessor(Condition_Disease_Medium, true, false, 18, ITEM_ARTIFACT_YORUBA, EQUIP_ARMOUR, ITEM_ARTIFACT_CLOAK_OF_THE_SHEEP, EQUIP_CLOAK),
9856c2f8f918 CastSpell continue
Ritor1
parents: 1563
diff changeset
22 ConditionProcessor(Condition_Poison_Severe, true, false, 21, ITEM_ARTIFACT_YORUBA, EQUIP_ARMOUR, ITEM_ARTIFACT_CLOAK_OF_THE_SHEEP, EQUIP_CLOAK),
9856c2f8f918 CastSpell continue
Ritor1
parents: 1563
diff changeset
23 ConditionProcessor(Condition_Disease_Severe, true, false, 18, ITEM_ARTIFACT_YORUBA, EQUIP_ARMOUR, ITEM_ARTIFACT_CLOAK_OF_THE_SHEEP, EQUIP_CLOAK),
1361
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
24 ConditionProcessor(Condition_Paralyzed, false, false, 20, ITEM_ARTIFACT_YORUBA, EQUIP_ARMOUR, ITEM_ARTIFACT_CLOAK_OF_THE_SHEEP, EQUIP_CLOAK, ITEM_ARTIFACT_GHOULSBANE, EQIUP_ANY),
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
25 ConditionProcessor(Condition_Unconcious,false, false, 0),
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
26 ConditionProcessor(Condition_Dead, true, true, 0),
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
27 ConditionProcessor(Condition_Pertified, true, false, 23, ITEM_ARTIFACT_YORUBA, EQUIP_ARMOUR, ITEM_ARTIFACT_CLOAK_OF_THE_SHEEP, EQUIP_CLOAK, ITEM_RELIC_KELEBRIM, EQIUP_ANY),
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
28 ConditionProcessor(Condition_Eradicated, true, true, 0),
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
29 ConditionProcessor(Condition_Zombie, false, false, 0)
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
30 };
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
31
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
32 bool ConditionProcessor::IsPlayerAffected( Player* inPlayer, int condToCheck, int blockable)
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
33 {
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
34 if ( !blockable )
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
35 return true;
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
36 ConditionProcessor* thisProc = &conditionArray[condToCheck];
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
37 if (thisProc->m_IsBlockedByProtFromMagic && pParty->pPartyBuffs[PARTY_BUFF_PROTECTION_FROM_MAGIC].uExpireTime > 0)
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
38 {
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
39 if (!(thisProc->m_DoesNeedGmProtFromMagic && pParty->pPartyBuffs[PARTY_BUFF_PROTECTION_FROM_MAGIC].uSkill < 4))
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
40 {
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
41 --pParty->pPartyBuffs[PARTY_BUFF_PROTECTION_FROM_MAGIC].uPower;
2264
Ritor1
parents: 2253
diff changeset
42 if ( pParty->pPartyBuffs[PARTY_BUFF_PROTECTION_FROM_MAGIC].uPower < 1 )
1361
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
43 pParty->pPartyBuffs[PARTY_BUFF_PROTECTION_FROM_MAGIC].Reset();
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
44 return false;
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
45 }
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
46 }
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
47 if (thisProc->m_WorkingEnchantment != 0)
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
48 {
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
49 if (inPlayer->HasEnchantedItemEquipped(thisProc->m_WorkingEnchantment))
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
50 return false;
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
51 }
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
52 for (unsigned int i = 0; i < thisProc->m_equipmentPairs.size() / 2; i++)
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
53 {
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
54 if (thisProc->m_equipmentPairs[i * 2].m_ItemId == (ITEM_TYPE)0)
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
55 return true;
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
56 ITEM_TYPE itemId = thisProc->m_equipmentPairs[i * 2].m_ItemId;
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
57 ITEM_EQUIP_TYPE slot = thisProc->m_equipmentPairs[i * 2 + 1].m_EquipSlot;
1563
0311debb684c splitting Player::WearsItem into two functions
Grumpy7
parents: 1361
diff changeset
58 if (slot == EQIUP_ANY)
1361
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
59 {
1563
0311debb684c splitting Player::WearsItem into two functions
Grumpy7
parents: 1361
diff changeset
60 if (inPlayer->WearsItemAnyWhere(itemId))
0311debb684c splitting Player::WearsItem into two functions
Grumpy7
parents: 1361
diff changeset
61 return false;
0311debb684c splitting Player::WearsItem into two functions
Grumpy7
parents: 1361
diff changeset
62 }
0311debb684c splitting Player::WearsItem into two functions
Grumpy7
parents: 1361
diff changeset
63 else
0311debb684c splitting Player::WearsItem into two functions
Grumpy7
parents: 1361
diff changeset
64 {
0311debb684c splitting Player::WearsItem into two functions
Grumpy7
parents: 1361
diff changeset
65 if (inPlayer->WearsItem(itemId, slot))
0311debb684c splitting Player::WearsItem into two functions
Grumpy7
parents: 1361
diff changeset
66 return false;
1361
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
67 }
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
68 }
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
69 return true;
b3ac17fd12de Moved condition checking to a separate class, extracted it from player::SetCondition
Grumpy7
parents:
diff changeset
70 }