summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/rustanddust/game/Player.java
blob: de8be76904352059c35161ccff5fc0a579cb1b98 (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
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
package ch.asynk.rustanddust.game;

import ch.asynk.rustanddust.RustAndDust;

public class Player
{
    private static final float MOVE_TIME = 0.4f;

    private int turn;
    private int apSpent;
    private int actionPoints;
    private boolean deploymentDone;

    public Army army;
    public UnitList units;
    public UnitList casualties;
    public UnitList reinforcement;
    public UnitList withdrawed;

    public int actionCount;
    public int objectivesWon;
    public int engagementWon;
    public int engagementLost;

    public Player(final RustAndDust game, Army army, int n)
    {
        this.army = army;
        this.units = new UnitList(n);
        this.casualties = new UnitList(n);
        this.reinforcement = new UnitList(n);
        this.withdrawed = new UnitList(n);
        this.turn = 0;
        this.apSpent = 0;
        this.actionPoints = 0;
        this.deploymentDone = false;
        this.actionCount = 0;
        this.objectivesWon = 0;
        this.engagementWon = 0;
        this.engagementLost = 0;
    }

    public String getName()
    {
        return army.toString();
    }

    public String toString()
    {
        return String.format("%s Turn:%d AP:%d units:%d casualties:%d", army, turn, actionPoints, units.size(), casualties.size());
    }

    public String getStats()
    {
        return String.format("%s\n%4d\n%4d\n%4d\n%4d\n%4d", getName(), actionCount, unitsLeft(), withdrawed(), casualties(), objectivesWon);
    }

    public boolean is(Army army)
    {
        return (this.army == army);
    }

    public boolean isEnemy(Unit unit)
    {
        return unit.isEnemy(army);
    }

    public boolean isEnemy(Army other)
    {
        return army.isEnemy(other);
    }

    public int unitsLeft()
    {
        return (units.size() + reinforcement.size());
    }

    public int reinforcement()
    {
        return reinforcement.size();
    }

    public int casualties()
    {
        return casualties.size();
    }

    public int withdrawed()
    {
        return withdrawed.size();
    }

    public void addReinforcement(Unit unit)
    {
        reinforcement.add(unit);
    }

    public void unitEntry(Unit unit)
    {
        reinforcement.remove(unit);
        addUnit(unit);
    }

    public void revertUnitEntry(Unit unit)
    {
        removeUnit(unit);
        reinforcement.add(unit);
    }

    public void casualty(Unit unit)
    {
        removeUnit(unit);
        casualties.add(unit);
    }

    public void unitWithdraw(Unit unit)
    {
        removeUnit(unit);
        withdrawed.add(unit);
    }

    private void addUnit(Unit unit)
    {
        units.add(unit);
    }

    private void removeUnit(Unit unit)
    {
        units.remove(unit);
    }

    public int getAp()
    {
        return ((apSpent < actionPoints) ? (apSpent + 1) : apSpent);
    }

    public int getTurnDone()
    {
        return turn;
    }

    public int getCurrentTurn()
    {
        return (turn + 1);
    }

    public boolean apExhausted()
    {
        return (apSpent == actionPoints);
    }

    public boolean isDeploymentDone()
    {
        return (deploymentDone || (reinforcement.size() == 0));
    }

    public void burnDownOneAp()
    {
        apSpent += 1;
        actionCount += 1;
        RustAndDust.debug("Player", String.format("%d/%d - %d", apSpent, actionPoints, actionCount));
        if (apSpent > actionPoints) RustAndDust.debug("ERROR: spent too much AP, please report");
    }

    public void turnEnd()
    {
        if (deploymentDone)
            turn += 1;
        else
            deploymentDone = (reinforcement.size() == 0);
        for (Unit unit : units)
            unit.reset();
    }

    public void turnStart(int aps)
    {
        if (isDeploymentDone()) {
            actionPoints = aps;
            apSpent = 0;
        }
    }

    public boolean canPromote(Unit unit)
    {
        if (unit.isHq()) return false;
        for (Unit p: casualties)
            if (p.isHqOf(unit)) return true;
        return false;
    }

    public boolean promote(Unit unit)
    {
        for (Unit p: casualties) {
            if (p.isHqOf(unit)) {
                unit.promote();
                p.degrade();
                return true;
            }
        }

        return false;
    }
}