-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapoc.py
220 lines (175 loc) · 5.7 KB
/
apoc.py
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
#!/usr/bin/python
try:
import sys
import random
import math
import numbers
import os
import getopt
import pygame
from socket import *
from pygame.locals import *
import spritesheet
# trying to separate some of this stuff out so its not one giant file
import chrome
import maps
import units
except ImportError, err:
print "couldn't load module. %s" % (err)
sys.exit(2)
# this stuff is staying in here until i actually implement it
class Work:
# these should probably be in a dictionary, with name as the key
def __init__(Name, APCost, ResourceCosts, Products):
self.name = Name
self.APCost = APCost
self.ResourceCosts = ResourceCosts
self.Products = Products
# ResourceCost [ResourceType,Amount]
# Product [ResourceType, Amount]
# NewTileType
# NewBuilding
class Building:
# Name
# Desc
# hp?
# Work Types avail
def __init__():
self.type = 0
class Resource:
# Name
# Desc
# might be nice to have a list of Work that you can use it for, but I don't know the right way to do that
# and that is more a nice to have.
def __init__():
self.type = 0
class Item:
# not sure we will need this distinct from resource
# but the cardinality here is different
# these will be mainly small or unique runs, not big piles
# Name
# Desc
# Type - maybe each individual item references a resource? come back to this.
def __init__():
self.type = 0
# leaving these here until I figure out where I want to keep them
# i don't think this is a terribly good implementation
class Highlight(pygame.sprite.Sprite):
# the idea is that we move the selection window, rather than attempting to do the highlight on the unit.
# probably will need to change this later.
def __init__(self, x=0, y=0):
pygame.sprite.Sprite.__init__(self)
self.image = pygame.surface.Surface((35, 35))
self.image.fill((54, 47, 200))
self.owner = []
self.x = x
self.y = y
self.rect = pygame.Rect(x*32,y*32,32,32)
self.rect2 = pygame.Rect(x*32-3,y*32-3,38,38)
def move(self,x,y):
self.rect2 = pygame.Rect(x*32-3, y*32-3, 38,38) #prob inefficient
self.rect = pygame.Rect(x*32,y*32,32,32)
self.x = x
self.y = y
def draw(self, surface):
surface.blit(self.image, self.rect)
class Player:
# a class that will be superclassed or subclassed to handle AI as well
# for now it holds some game state type data that we don't really have a place fore
def __init__(self):
self.selection = None # the selected unit
self.highlight = Highlight(0,0)
def select(self,unit):
if self.selection:
self.selection.deselect
self.selection = unit
self.selection.select()
# Turns
# user will have an action to end their turn
# this iterates through the list of units, and resets their AP to max
# The game loop - I think its mostly going to be sprite idle animations, and input capture
# detect clicks, and switch to a unit highlighted state for that sprite or tile
# if a unit is already selected, the click behavior changes
# right click presents the orders menu
# left clicking on an order, which will also include cancel, moves the unit to the specified tile
# and executes the order.
# each order will indicate the movement AP cost, as well as the action AP cost, the total,
# and the amount remaining
# left clicking behavior isn't actually that different - first it deselects the current unit/tile
# then selects the new one
# the screen itself
# most of the screen is the map
# a side or bottom bar has other stuff
# mini map, eventually
# selected unit details
# overall details
# main menu button
def main():
# Initialise screen
pygame.init()
screen = pygame.display.set_mode((640, 480))
pygame.display.set_caption('Apocalypse')
# Fill background (probably deprecated?)
background = pygame.Surface(screen.get_size())
background = background.convert()
background.fill((0, 0, 0))
# Initialise units
global ug
ug = units.UnitGroup()
ug.add(units.Unit())
ug.add(units.Unit(2,4,"frowns"))
global player
player = Player()
global map
map = maps.Map(10) # 10 is the size, in tiles
# Initialise sprites
unitsprites = pygame.sprite.RenderPlain((ug))
mapsprites = pygame.sprite.RenderPlain(map)
gamechrome = chrome.Chrome()
# Blit everything to the screen
screen.blit(background, (0, 0))
pygame.display.flip()
# Initialise clock
clock = pygame.time.Clock()
running = True
while running:
# Make sure game doesn't run at more than 60 frames per second
clock.tick(60)
# no events are used, but the remnant pong behavior is still there for ref.
for event in pygame.event.get():
if event.type == QUIT:
return
elif event.type == KEYDOWN:
if event.key == K_ESCAPE:
running = False
elif event.type == MOUSEBUTTONDOWN:
x = event.pos[0]/32
y = event.pos[1]/32
if event.button == 1:
# detect collision with a unit, and select it, first deselecting the current
player.highlight.move(x,y)
#print player.highlight.rect
newselect = pygame.sprite.spritecollide(player.highlight, ug, False)
print newselect
if newselect != []:
# we have clicked on a unit.
if newselect[0] == player.selection:
# if we click on it again, we deselect
player.selection.deselect()
player.selection = []
else:
# drop the current one, and select a new one.
player.select(newselect[0])
#player.selection.highlight = player.highlight
elif player.selection:
player.selection.move(x, y)
map.draw(screen)
# prob wrong
player.highlight.draw(screen)
for u in ug:
screen.blit(background, u.rect, u.rect)
unitsprites.update()
unitsprites.draw(screen)
gamechrome.draw(screen, player)
pygame.display.flip()
if __name__ == '__main__': main()