Skip to content

Instantly share code, notes, and snippets.

@jweissbock
Created March 29, 2013 01:45
Show Gist options
  • Save jweissbock/5268205 to your computer and use it in GitHub Desktop.
Save jweissbock/5268205 to your computer and use it in GitHub Desktop.
Pioneers of Katan
import pygame, sys, random, math
from pygame.locals import *
# set up game
pygame.init()
mainClock = pygame.time.Clock()
# create window
WINDOWWIDTH = 600
WINDOWHEIGHT = 600
screen = pygame.display.set_mode((WINDOWWIDTH, WINDOWHEIGHT), 0, 32)
pygame.display.set_caption('Pioneers of Katan')
# location of all possible settlements
# passed to the main board
settlementLoc = []
# road locations
roadLoc = []
""" Constants """
CLAY = (255, 0, 0)
ORE = (190, 190, 190)
WHEAT = (255, 215, 0)
SHEEP = (124, 252, 0)
WOOD = (0, 100, 0)
SAND = (139, 69, 19)
resources = {CLAY: 'Clay', ORE: 'Ore', WHEAT: 'Wheat',
SHEEP: 'Sheep', WOOD: 'Wood', SAND: 'Desert, Nothing'}
P1 = (0, 0, 255)
P2 = (255, 20, 147)
P3 = (255, 165, 0)
P4 = (70, 130, 180)
# grid locations of all hex tiles
hexTiles = [(0,0), (0,1), (0,-1), (-1,0.5), (-1,-0.5), (1,0.5), (1,-0.5), (2,0), (-2,0), (0,2),
(0,-2), (1,1.5), (1,-1.5), (-1,1.5), (-1, -1.5), (2,1), (2,-1), (-2,1), (-2,-1)]
hexProbabilities = [5, 2, 6, 3, 8, 10, 9, 12, 11, 4, 8, 10, 9, 4, 5, 6, 3, 11]
random.shuffle(hexProbabilities)
hexResources = [CLAY, CLAY, CLAY, ORE, ORE, ORE, WHEAT, WHEAT, WHEAT, WHEAT, SHEEP,
SHEEP, SHEEP, SHEEP, WOOD, WOOD, WOOD, WOOD]
zipHex = zip(hexResources, hexProbabilities)
zipHex += [(SAND, -1)]
random.shuffle(zipHex)
""" The Board Class """
class Board:
hexes = []
settlements = []
instruction = ""
def __init__(self, size):
self.cX = screen.get_rect().centerx
self.cY = screen.get_rect().centery
self.hexHeight = 0.866 * size
""" The Hex's """
for tile in zip(hexTiles, zipHex):
self.hexes.append(Hex(tile[0], size, tile[1][0], tile[1][1], self))
# set up the settlement locations
self.settlements = settlementLoc # may not to do anymore
# update the roads, also for each road, connect the graph of settlements
def draw(self):
# draw the HEXes
for h in self.hexes:
h.draw()
# draw the settlement locations
for item in self.settlements:
item.draw()
# message to user
basicFont = pygame.font.SysFont(None, 24)
text = basicFont.render("Select your first village", True, (255,255,255), (0,0,0))
textRect = text.get_rect()
textRect.left = 5
textRect.top = 560
screen.blit(text, textRect)
""" Create a settlement class"""
class Settlement:
def __init__(self, location, tileOwner):
self.location = location
self.locationx = location[0]
self.locationy = location[1]
self.onTiles = [tileOwner]
self.roadsTo = [] # do I need?
self.city = False
self.owner = -1
def draw(self):
pygame.draw.rect(screen, (0,0,0), (self.locationx, self.locationy, 20, 20),2)
""" The Road Class """
class Road:
def __init__(self, start, end):
self.start = start
self.end = end
self.owner = -1
""" Create a hex class """
class Hex:
def __init__(self, centre, size, resource, probability, board):
self.centre = centre
self.hexX = board.cX +(1.5*centre[0]*size)
self.hexY = board.cY+(2*centre[1]*board.hexHeight)
self.hexSize = size
self.resource = resource
self.value = probability # chance of getting this resource
self.hasRobber = False
# calculate each 6 points so we only do it once
self.points = []
self.points.append((self.hexX - self.hexSize, self.hexY))
self.points.append((self.hexX - (self.hexSize/2), self.hexY - (0.866*self.hexSize)))
self.points.append((self.hexX + (self.hexSize/2), self.hexY - (0.866*self.hexSize)))
self.points.append((self.hexX + self.hexSize, self.hexY))
self.points.append((self.hexX + (self.hexSize/2), self.hexY + (0.866*self.hexSize)))
self.points.append((self.hexX - (self.hexSize/2), self.hexY + (0.866*self.hexSize)))
# add the points of all settlements to the settlement lists
newSets = [((int(10*math.floor(X / 10))-5), int((10*math.floor(Y / 10))-5)) for (X,Y) in self.points]
for s in settlementLoc:
if s.location in newSets:
newSets.remove(s.location)
s.onTiles.append(self)
for ns in newSets: # these are the remainders
settlementLoc.append(Settlement(ns, self))
## going to create all the roads similarly...
newRoads = self.points
newRoads.append(newRoads[0])
print newRoads
# if road doesn't exist already
def draw(self):
# draw the hex
pygame.draw.polygon(screen, self.resource, self.points, 0)
self.points.append(self.points[0])
# draw the roads
for i in range(len(self.points) - 1):
# draw the polygon
pygame.draw.line(screen, (255,20,147), self.points[i], self.points[i+1], 5)
# draw the text
if self.value > 0:
font = pygame.font.Font(None, 36)
text = font.render(str(self.value), 1, (0,0,0))
textpos = text.get_rect()
textpos.left = self.hexX - 5
textpos.top = self.hexY - 10
screen.blit(text, textpos)
""" Set up the information for the settlements """
settlers = Board(60)
# run the game loop
while True:
# check for the QUIT event
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
elif event.type == MOUSEBUTTONDOWN:
click = pygame.mouse.get_pos()
print click
x = int((10*math.floor(click[0] / 10))-5)
y = int((10*math.floor(click[1] / 10))-5)
test = []
for set in settlers.settlements:
if set.location == (x,y):
test.append(set.location)
for tile in set.onTiles:
print str(resources[tile.resource]) + " is " + str(tile.value)
## draw the board
settlers.draw()
# draw the window onto the screen
pygame.display.update()
mainClock.tick(30)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment