view demos/shooter/scripts/ships/player.py @ 451:f463ab431cc0

Movement shouldn't be dependent on framerate anymore. Some minor tweaks.
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Thu, 01 Apr 2010 21:14:23 +0000
parents ba6817013343
children cf53848fb187
line wrap: on
line source

# -*- coding: utf-8 -*-

# ####################################################################
#  Copyright (C) 2005-2009 by the FIFE team
#  http://www.fifengine.de
#  This file is part of FIFE.
#
#  FIFE is free software; you can redistribute it and/or
#  modify it under the terms of the GNU Lesser General Public
#  License as published by the Free Software Foundation; either
#  version 2.1 of the License, or (at your option) any later version.
#
#  This library is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
#  Lesser General Public License for more details.
#
#  You should have received a copy of the GNU Lesser General Public
#  License along with this library; if not, write to the
#  Free Software Foundation, Inc.,
#  51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
# ####################################################################

from fife import fife
from scripts.ships.shipbase import Ship
from scripts.common.helpers import Rect


class Player(Ship):
	def __init__(self, model, playerName, layer):
		super(Player, self).__init__(model, playerName, layer)

		self._score = 0
	
	def _getScore(self):
		return self._score
		
	def applyScore(self, sc):
		self._score += sc
	
	def update(self, timedelta, keystate, camera):
		key = False
		
		oldpos = self.location
		
		if keystate['UP']:
			self.applyThrust(fife.DoublePoint(0,-0.75), timedelta)
			key = True
		if keystate['DOWN']:
			self.applyThrust(fife.DoublePoint(0,0.75), timedelta)
			key = True
		if keystate['LEFT']:
			self.applyThrust(fife.DoublePoint(-0.75,0), timedelta)
			key = True
		if keystate['RIGHT']:
			self.applyThrust(fife.DoublePoint(0.75,0), timedelta)
			key = True
			
		if not key and self._velocity.length() > 0:
			self.applyBrake(0.75, timedelta)
		
		super(Player, self).update(timedelta)
		
		#set up the players camera bounds
		#TODO: grab screen resolution from somewhere
		topleft = camera.toMapCoordinates(fife.ScreenPoint(0,0))
		bottomright = camera.toMapCoordinates(fife.ScreenPoint(1024,768))

		camrect = Rect(topleft.x, topleft.y, bottomright.x - topleft.x, bottomright.y - topleft.y)
	
		#player bounding box
		xscale = self._layer.getCellGrid().getXScale()
		yscale = self._layer.getCellGrid().getYScale()


		#add the padding to the edge
		camrect.x += self._boundingBox.w
		camrect.y += self._boundingBox.h
		camrect.w -= 2*self._boundingBox.w
		camrect.h -= 2*self._boundingBox.h
		
		if not self._boundingBox.intersects(camrect):
			if (self._boundingBox.x + self._boundingBox.w) < camrect.x:
				#pos.x = (bbox.x + bbox.w/2 + 0.1) / xscale
				#oldpos.setExactLayerCoordinates(pos)
				self._velocity.x = (timedelta * 0.01) / xscale
			
#			elif (bbox.y + bbox.h) < camrect.y or (bbox.y - bbox.h) > camrect.y:
#				pos.x += self._velocity.x * (timedelta/1000.0)
#				oldpos.setExactLayerCoordinates(pos)
#				self._velocity.y = 0
			else:
				self._velocity.x = 0
				self._velocity.y = 0



			self.location = oldpos


	score = property(_getScore)