Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Saludame.activity/effects.py
blob: 26da2610ce09497b826d22c94d1c4e8ef0b09c61 (plain)
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
# -*- coding: utf-8 -*-

class Effect:
    """
    Represents effects that affect directly on the status bars.
    """
   
    def __init__(self, effect_satatus_list, consequences=[], change_time=False):
        """
        Los effect_status son tuplas (id_barra, increase_rate)
        """
        self.effect_status_list = effect_satatus_list   # list of tuples (bar_id, increase_rate)
        self.consequences = consequences                # list of event_id that can trigger, only one with probability > 0 will be triggered
        self.change_time = change_time
        
    def activate(self, factor):
        for bar_id, increase_rate in self.effect_status_list:
            self.bars_controller.increase_bar(bar_id, increase_rate * factor)
            
    def set_bar_controller(self, bars_controller):
        self.bars_controller = bars_controller

    def set_change_time(self, change):
        self.change_time = change
    
    def get_change_time(self):
        return self.change_time
    
    def get_consequence(self, events_dict, bars_value_dic, restrictions):
        """ Iterates between the possible consequences and returns the first one with probability > 0 """
        for c in self.consequences:
            if c in events_dict:
                event = events_dict[c]
                event.update_probability(bars_value_dic, restrictions, True)
                if event.get_probability() > 0:
                    return event

    def get_new_place(self):
        return None

    def get_new_clothes(self):
        return None


class LocationEffect(Effect):
    """
    Represents effects that set the character location.
    """
    
    def __init__(self, place_id):
        Effect.__init__(self, [])
        self.place_id = place_id
    
    def get_new_place(self):
        return self.place_id


class ClothesEffect(Effect):
    """
    Represents effects that set the character clothes.
    """
    
    def __init__(self, clothes_id):
        Effect.__init__(self, [])
        self.clothes_id = clothes_id

    def get_new_clothes(self):
        return self.clothes_id