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
use character::Attribute;
use rand::{Rand, Rng};
use types::AttributeValue;

/// An item
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct Item {
    /// The name of the item
    pub name: String,
    /// The type of the item
    pub item_type: ItemType,
    /// The influence of the item (optional)
    pub influence: Option<ItemInfluence>,
    /// The stack size of the item
    pub stack_size: usize,
    /// The rarity of the item
    pub rarity: ItemRarity,
}

impl Item {
    /// Returns `true` if the item can be equipped
    pub fn can_be_equipped(&self) -> bool {
        let equipable = vec![ItemType::ArmorHead,
                             ItemType::ArmorChest,
                             ItemType::ArmorLegs,
                             ItemType::ArmorFeet,
                             ItemType::WeaponSword,
                             ItemType::WeaponWand,
                             ItemType::WeaponHammer];

        equipable.contains(&self.item_type)
    }

    /// Returns `true` if the item can be stacked
    pub fn can_be_stacked(&self) -> bool {
        self.stack_size > 1
    }
}

/// The influence an item can have on a certain attribute
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct ItemInfluence {
    /// The attribute that is influenced
    pub attribute: Attribute,
    /// The amount about which the attribute is influenced
    pub amount: AttributeValue,
}

impl ItemInfluence {
    /// Creates a new `ItemInfluence` object
    pub fn new(attribute: Attribute, amount: AttributeValue) -> ItemInfluence {
        ItemInfluence {
            attribute: attribute,
            amount: amount,
        }
    }
}

/// The type of an item
#[derive(Clone, PartialEq, Eq, Debug)]
pub enum ItemType {
    /// Armor that can only be put into the `armor_slot_head` of a character
    ArmorHead,
    /// Armor that can only be put into the `armor_slot_chest` of a character
    ArmorChest,
    /// Armor that can only be put into the `armor_slot_legs` of a character
    ArmorLegs,
    /// Armor that can only be put into the `armor_slot_feet` of a character
    ArmorFeet,

    /// A potion
    ConsumablePotion,
    /// Some kind of food
    ConsumableFood,

    /// Some kind of sword
    WeaponSword,
    /// Some kind of wand
    WeaponWand,
    /// Some kind of hammer
    WeaponHammer,

    /// A usable item
    Usable,
    /// A useless prop
    Prop,
}

impl ItemType {
    /// A list of attributes an `ItemType` can influence
    pub fn attributes(&self) -> Vec<Attribute> {
        match *self {
            ItemType::ConsumableFood |
            ItemType::ConsumablePotion => {
                vec![Attribute::Charisma,
                     Attribute::Constitution,
                     Attribute::Defense,
                     Attribute::Dexterity,
                     Attribute::Intelligence,
                     Attribute::Luck,
                     Attribute::Perception,
                     Attribute::Strength,
                     Attribute::Willpower,
                     Attribute::Wisdom]
            }
            ItemType::WeaponHammer | ItemType::WeaponSword | ItemType::WeaponWand => {
                vec![Attribute::Dexterity, Attribute::Strength]
            }
            ItemType::ArmorHead | ItemType::ArmorChest | ItemType::ArmorLegs |
            ItemType::ArmorFeet => {
                vec![Attribute::Charisma,
                     Attribute::Constitution,
                     Attribute::Defense,
                     Attribute::Dexterity,
                     Attribute::Luck,
                     Attribute::Perception]
            }
            ItemType::Usable | ItemType::Prop => vec![],
        }
    }

    /// Returns `true` if the item created using this type should be stackable
    pub fn is_stackable(&self) -> bool {
        let stackable_types = vec![ItemType::ConsumableFood, ItemType::ConsumablePotion];

        stackable_types.contains(self)
    }
}

impl Rand for ItemType {
    fn rand<R: Rng>(rng: &mut R) -> ItemType {
        let base = rng.gen_range(0, 1000);

        match base {
            0...250 => {
                let base = rng.gen_range(0, 1000);
                match base {
                    0...500 => ItemType::ConsumableFood,
                    501...1000 => ItemType::ConsumablePotion,
                    _ => ItemType::Prop,
                }
            }
            251...500 => {
                let base = rng.gen_range(0, 1000);
                match base {
                    0...250 => ItemType::ArmorHead,
                    251...500 => ItemType::ArmorChest,
                    501...750 => ItemType::ArmorLegs,
                    751...1000 => ItemType::ArmorFeet,
                    _ => ItemType::Prop,
                }
            }
            501...750 => {
                let base = rng.gen_range(0, 1000);
                match base {
                    0...333 => ItemType::WeaponHammer,
                    334...666 => ItemType::WeaponSword,
                    667...1000 => ItemType::WeaponWand,
                    _ => ItemType::Prop,
                }
            }
            751...1000 => {
                let base = rng.gen_range(0, 1000);
                match base {
                    0...500 => ItemType::Usable,
                    501...1000 => ItemType::Prop,
                    _ => ItemType::Prop,
                }
            }
            _ => ItemType::Prop,
        }
    }
}

/// A type defining the rarity of an item
#[derive(Clone, PartialEq, Eq, Debug)]
pub enum ItemRarity {
    /// Items are found very often
    Common,
    /// Items are still found pretty often but not that often
    Uncommon,
    /// Items are found much rarer
    Rare,
    /// Items are extremely rare
    Epic,
    /// Items are so rare, you might never find them anywhere
    Legendary,
}

impl Rand for ItemRarity {
    fn rand<R: Rng>(rng: &mut R) -> ItemRarity {
        let base = rng.gen_range(0, 1000);

        match base {
            0...750 => ItemRarity::Common,
            751...917 => ItemRarity::Uncommon,
            918...972 => ItemRarity::Rare,
            873...979 => ItemRarity::Epic,
            980...1000 => ItemRarity::Legendary,
            _ => ItemRarity::Common,
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use item_generator;

    #[test]
    fn can_be_equipped() {
        let head_piece = item_generator::ItemGenerator::new().item_type(ItemType::ArmorHead).gen();
        assert!(head_piece.can_be_equipped());

        let head_piece =
            item_generator::ItemGenerator::new().item_type(ItemType::ConsumablePotion).gen();
        assert!(!head_piece.can_be_equipped());
    }

    #[test]
    fn can_be_stacked() {
        let head_piece = item_generator::ItemGenerator::new().stack_size(4).gen();
        assert!(head_piece.can_be_stacked());

        let head_piece = item_generator::ItemGenerator::new().stack_size(1).gen();
        assert!(!head_piece.can_be_stacked());
    }
}