Exemplo n.º 1
0
 def getWayColor(self, percent):
     return cc.interpolateBetween([[cc.getColor("material_red"), 0.0],
                                   [cc.getColor("material_darkpurple"), 1],
                                   [cc.getColor("material_blue"), 2],
                                   [cc.getColor("material_blue"), 4],
                                   [cc.getColor("material_black"), 5]],
                                  percent)
Exemplo n.º 2
0
 def __init__(self, dy, playerColor):
     self.noise = snoise.SimplexNoise(2, 1, 3)
     self.dy = dy
     self.grassColor = colors.getColor("material_green")
     self.running = False
     self.player = Player(playerColor)
     self.obstacles = []
Exemplo n.º 3
0
    def render(self, display):
        display.fill(cc.getColor("material_black"))

        #for pos in self.ways:
        #    display.setPixel(pos.x, pos.y, WAY_COLOR)

        sinceStart = max(1.0, time.time() - self.startTime)
        print(sinceStart)
        n = float(len(self.stack))

        for i, pos in enumerate(self.ways):
            alpha = self.times[hash(pos)]
            #alpha = i/n

            display.setPixel(pos.x, pos.y, self.getWayColor(alpha))

        if len(self.stack) > 0:
            head = self.stack[-1]
            display.setPixel(head.x, head.y, cc.getColor("material_red"))
Exemplo n.º 4
0
class Empty(Block):

    COLOR = colors.getColor("material_darkbrown")

    def __init__(self):
        Block.__init__(self)

    def getType(self):
        return "empty"

    def getColor(self):
        return Empty.COLOR
Exemplo n.º 5
0
class Sky(Block):

    COLOR = colors.getColor("material_blue")

    def __init__(self):
        Block.__init__(self)

    def getType(self):
        return "sky"

    def getColor(self):
        return Sky.COLOR
Exemplo n.º 6
0
class Ladder(Block):

    COLOR = colors.getColor("woodbrown")

    def __init__(self):
        Block.__init__(self)

    def isClimbable(self):
        return True

    def getType(self):
        return "ladder"

    def getColor(self):
        return Ladder.COLOR
Exemplo n.º 7
0
class Dirt(Block, object):

    COLOR = colors.getColor("material_brown")

    def __init__(self):
        Block.__init__(self)

    def getMaxLife(self):
        return 4

    def getType(self):
        return "dirt"

    def getBaseColor(self):
        return Dirt.COLOR
Exemplo n.º 8
0
class Stone(Block):

    COLOR = colors.getColor("material_gray")

    def __init__(self):
        Block.__init__(self)

    def getMaxLife(self):
        return 20

    def getType(self):
        return "stone"

    def getBaseColor(self):
        return Stone.COLOR
Exemplo n.º 9
0
class Grass(Block):

    COLOR = colors.getColor("material_green")

    def __init__(self):
        Block.__init__(self)

    def getMaxLife(self):
        return 3

    def getType(self):
        return "grass"

    def getBaseColor(self):
        return Grass.COLOR
Exemplo n.º 10
0
class Block():
    emptyColor = colors.getColor("material_darkbrown")

    def __init__(self):
        self.pos = None
        self.life = self.getMaxLife()
        self.fallTimer = 0
        self.falling = False

    def setPos(self, pos):
        self.pos = pos

    def isWalkable(self):
        return self.life == 0

    def isClimbable(self):
        return False

    def addLife(self, dLife):
        self.life = max(0, self.life + dLife)

    def getLife(self):
        return self.life

    def getMaxLife(self):
        return 0

    def getDeath(self):
        return 1 - float(self.getLife()) / self.getMaxLife()

    def getColor(self):
        if self.life == self.getMaxLife():
            return self.getBaseColor()

        return colors.interpolateColor(Block.emptyColor, self.getBaseColor(),
                                       float(self.life) / self.getMaxLife())

    def getBaseColor(self):
        return [0, 0, 0]

    def getType(self):
        return "block"

    def __eq__(self, other):
        return self.pos == other.pos and self.getType() == other.getType()
Exemplo n.º 11
0
 def __init__(self):
     Game.__init__(self, "Tommy Wild", [16, 16])
     self.fps = 10
     self.fog = Fog(colors.getColor("black"), 0.0)
     self.bloodColor = colors.getColor("red")
     self.camera = Camera(self.size)
Exemplo n.º 12
0
class Tommy(Block):

    COLOR = colors.getColor("red")
    FALL_COUNTDOWN = 0.2

    def __init__(self, world):
        Block.__init__(self)

        self.world = world
        self.movement = None
        self.sight = 2

    def update(self, dt):
        # Fall
        self.fallTimer -= dt

        if self.falling and self.fallTimer <= 0:
            self.fallCounter += 1
            self.movement = Pos(0, 1)

        currentBlock = self.world.getBlock(self.pos)
        nextBlock = self.world.getNext(self.pos, self.movement)

        # Move tommy and get action
        action = self.move(currentBlock, nextBlock)

        if action == "destroy":
            self.world.setEmpty(nextBlock.pos)

        # Check fall
        underBlock = self.world.getNext(self.pos, Pos(0, 1))
        currentBlock = self.world.getBlock(self.pos)

        if not self.falling and underBlock.getType() == "empty" \
                and not currentBlock.isClimbable():
            self.falling = True
            self.fallCounter = 0
            self.fallTimer = Tommy.FALL_COUNTDOWN

        elif self.falling and underBlock.getType() != "empty":
            self.falling = False
            dLife = max(0, self.fallCounter - 3)
            self.addLife(-dLife)

    def move(self, currentBlock, nextBlock):
        if nextBlock is None or self.movement is None:
            return "error"

        elif nextBlock.isWalkable():
            if self.movement.isKey("up") and not currentBlock.isClimbable():
                self.movement = None
                return "stuck"

            else:
                self.pos += self.movement
                #self.movement = None
                return "move"
        else:
            nextBlock.addLife(-1)

            if nextBlock.getLife() == 0:
                if self.movement.isKey("down"):
                    self.movement = None

                return "destroy"
            else:
                return "dig"

    def setSight(self, sight):
        self.sight = sight

    def getSight(self):
        return self.sight

    def setMovement(self, movement):
        self.movement = movement

    def getMaxLife(self):
        return 10

    def getType(self):
        return "tommy"

    def getColor(self):
        return Tommy.COLOR