File size: 4,249 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
enum EHarvestType
{
NORMAL,
BARK
}
class WoodBase extends Plant
{
static bool m_IsCuttable;
static int m_PrimaryDropsAmount = -1;
static int m_SecondaryDropsAmount = -1;
static float m_ToolDamage = -1.0;
static float m_CycleTimeOverride = -1.0;
static string m_PrimaryOutput = ""; //some nonsensical item for debugging purposes
static string m_SecondaryOutput = ""; //some nonsensical item for debugging purposes
static string m_BarkType = "";
/*
bool m_IsCuttable;
int m_PrimaryDropsAmount = -1;
int m_SecondaryDropsAmount = -1;
float m_ToolDamage = -1.0;
float m_CycleTimeOverride = -1.0;
string m_PrimaryOutput = ""; //some nonsensical item for debugging purposes
string m_SecondaryOutput = ""; //some nonsensical item for debugging purposes
string m_BarkType = "";
*/
void WoodBase()
{
//InitMiningValues();
}
void InitMiningValues()
{
//m_IsCuttable = false;
};
override bool IsWoodBase()
{
return true;
}
override bool IsCuttable()
{
return ConfigGetBool("isCuttable");
}
int GetPrimaryDropsAmount()
{
return ConfigGetInt("primaryDropsAmount");
}
int GetSecondaryDropsAmount()
{
return ConfigGetInt("secondaryDropsAmount");
}
float GetToolDamage()
{
return ConfigGetFloat("toolDamage");
}
float GetCycleTimeOverride()
{
return ConfigGetFloat("cycleTimeOverride");
}
string GetPrimaryOutput()
{
return ConfigGetString("primaryOutput");
}
string GetSecondaryOutput()
{
return ConfigGetString("secondaryOutput");
}
string GetBarkType()
{
return ConfigGetString("barkType");
}
int GetAmountOfDrops(ItemBase item)
{
if ( GetPrimaryDropsAmount() > 0 )
{
if ( IsTree() && item && ( item.KindOf("Knife") || item.IsInherited(Screwdriver) ) )
{
return -1;
}
else
{
return GetPrimaryDropsAmount();
}
}
else
{
if ( item && ( item.KindOf("Knife") || item.IsInherited(Screwdriver) ) )
{
return -1;
}
else if ( item && item.KindOf("Axe") )
{
return 3;
}
else
{
return 100;
}
}
}
int GetAmountOfDropsEx(ItemBase item, EHarvestType type)
{
if ( GetPrimaryDropsAmount() > 0 )
{
if ( IsTree() && item && type == EHarvestType.BARK )
{
return -1;
}
else
{
return GetPrimaryDropsAmount();
}
}
else
{
if ( item && type == EHarvestType.BARK )
{
return -1;
}
else if ( item && type == EHarvestType.NORMAL )
{
return 3;
}
else
{
return 100;
}
}
}
void GetMaterialAndQuantityMap(ItemBase item, out map<string,int> output_map)
{
if ( IsTree() && item && ( item.KindOf("Knife") || item.IsInherited(Screwdriver) ) && GetBarkType() != "" )
{
output_map.Insert(GetBarkType(),1);
}
else
{
output_map.Insert(GetPrimaryOutput(),1);
}
}
void GetMaterialAndQuantityMapEx(ItemBase item, out map<string,int> output_map, EHarvestType type)
{
if ( IsTree() && item && type == EHarvestType.BARK && GetBarkType() != "" )
{
output_map.Insert(GetBarkType(),1);
}
else
{
output_map.Insert(GetPrimaryOutput(),1);
}
}
float GetDamageToMiningItemEachDrop(ItemBase item)
{
if (GetToolDamage() > -1)
return GetToolDamage();
if ( IsTree() )
{
if ( item && item.KindOf("Knife") )
{
return 20;
}
else if ( item && item.KindOf("Axe") )
{
return 20;
}
else
{
return 0;
}
}
else
{
if ( item && item.KindOf("Knife") )
{
return 30;
}
else if ( item && item.KindOf("Axe") )
{
return 30;
}
else
{
return 0;
}
}
}
float GetDamageToMiningItemEachDropEx(ItemBase item, EHarvestType type)
{
if (GetToolDamage() > -1)
return GetToolDamage();
if ( IsTree() )
{
if ( item && type == EHarvestType.BARK )
{
return 20;
}
else if ( item && type == EHarvestType.NORMAL )
{
return 20;
}
else
{
return 0;
}
}
else
{
if ( item && type == EHarvestType.BARK )
{
return 30;
}
else if ( item && type == EHarvestType.NORMAL )
{
return 30;
}
else
{
return 0;
}
}
}
override bool CanBeActionTarget()
{
return super.CanBeActionTarget() && !IsDamageDestroyed();
}
}; |