Mercurial > fife-parpg
view tests/extension_tests/modelview_tests.py @ 571:edc9efe969c2
This commit should fix the coloring overlay bug exposed by the commit in revision 3386. The InstanceRenderer was caching the overlays based on whether the current image had changed. The fix takes into account the current image as well as the overlay color to decide whether or not the overlay needs to be reproduced.
author | vtchill@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Tue, 29 Jun 2010 02:26:28 +0000 |
parents | 81641655bc38 |
children |
line wrap: on
line source
#!/usr/bin/env python # -*- 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 extension_test_utils import * from loaders import * import time class TestModelView(unittest.TestCase): def setUp(self): self.engine = getEngine() self.model = self.engine.getModel() self.metamodel = self.model.getMetaModel() loadMapFile("content/maps/new_official_map.xml", self.engine) self.map = self.model.getMaps("id", "OfficialMap")[0] self.elevation = self.map.getElevations("id", "OfficialMapElevation")[0] self.layer = self.elevation.getLayers("id", "OfficialMapTileLayer")[0] imgid = self.layer.getInstances()[0].getObject().get2dGfxVisual().getStaticImageIndexByAngle(0) img = self.engine.getImagePool().getImage(imgid) self.screen_cell_w = img.getWidth() self.screen_cell_h = img.getHeight() self.camloc = fife.Location(self.layer) self.camloc.setLayerCoordinates(fife.ModelCoordinate(5,0)) def tearDown(self): del self.engine def testModelView(self): cam = self.engine.getView().addCamera() cam.setCellImageDimensions(self.screen_cell_w, self.screen_cell_h) cam.setRotation(45) cam.setTilt(40) cam.setLocation(self.camloc) rb = self.engine.getRenderBackend() viewport = fife.Rect(0, 0, rb.getScreenWidth(), rb.getScreenHeight()) cam.setViewPort(viewport) self.engine.getView().resetRenderers() self.engine.initializePumping() for count in range(10): self.engine.pump() #time.sleep(0.03) c = self.camloc.getExactLayerCoordinates() c.x += 0.50 c = self.camloc.setExactLayerCoordinates(c) cam.setLocation(self.camloc) self.engine.finalizePumping() # removed from test set now due to switch to new directory structure -> content moved to clients # to be considered if this should be taken into use again TEST_CLASSES = [] if __name__ == '__main__': unittest.main()