summaryrefslogtreecommitdiff
path: root/player.py
blob: ed80f6662f32830e088d4b79ebe705c604a6edd8 (plain) (blame)
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
#!/usr/bin/python
"""
    Copyright 2011, Dipesh Amin <yaypunkrock@gmail.com>
    Copyright 2011, Stefan Beller <stefanbeller@googlemail.com>

    This file is part of tradey, a trading bot in the mana world
    see www.themanaworld.org
"""

import copy

class Item:
    pass

class Player:
    def __init__(self, name):
        self.inventory = {}
        self.name = name
        self.id = 0
        self.sex = 0
        self.map = ""
        self.x = 0
        self.y = 0

        self.EXP = 0
        self.MONEY = 0
        self.WEIGHT = 0
        self.MaxWEIGHT = 0

    def find_inventory_index(self, item_id):
        for item in self.inventory:
            if item > 1:
                if self.inventory[item].itemId == item_id:
                    return item
        return -10 # Not found - bug somewhere!

    def remove_item(self, index, amount):
        if index in self.inventory:
            self.inventory[index].amount -= amount
            if self.inventory[index].amount == 0:
                del self.inventory[index]

    def check_inventory(self, user_tree, sale_tree):
        # Check the inventory state.
        test_node = copy.deepcopy(self.inventory)
        for elem in sale_tree.root:
            item_found = False
            for item in test_node:
                if int(elem.get('itemId')) == test_node[item].itemId \
                and int(elem.get('amount')) <= test_node[item].amount:
                    test_node[item].amount -= int(elem.get('amount'))
                    if test_node[item].amount == 0:
                        del test_node[item]
                    item_found = True
                    break

            if not item_found:
                return "Server and client inventory out of sync."

        total_money = 0
        for user in user_tree.root:
            total_money += int(user.get('money'))

        if total_money != self.MONEY:
            return "Server and client money out of sync. Market: %s Player %s" % (total_money, self.MONEY)

        return 0

if __name__ == '__main__':
    print "Do not run this file directly. Run main.py"