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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
|
# -*- coding: utf-8 -*-
# ####################################################################
# Copyright (C) 2005-2010 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
# ####################################################################
"""
Editor
======
This class serves as
"""
import sys
import os
import traceback
fife_path = os.path.join('..','..','engine','python')
if os.path.isdir(fife_path) and fife_path not in sys.path:
sys.path.insert(0,fife_path)
from fife import fife
print "Using the FIFE python module found here: ", os.path.dirname(fife.__file__)
from fife.extensions import loaders
import events
import plugin
from fife.extensions.basicapplication import ApplicationBase
from fife.extensions import pychan
from fife.extensions.pychan.tools import callbackWithArguments as cbwa
from fife.extensions.pychan.internal import get_manager
from events import *
from gui import ToolBar, action
from gui.action import Action, ActionGroup
from gui.filemanager import FileManager
from gui.mainwindow import MainWindow
from gui.mapeditor import MapEditor
from gui.menubar import Menu, MenuBar
from gui.error import ErrorDialog
from mapview import MapView
from fife.extensions.fife_settings import Setting
TDS = Setting(app_name="editor")
def getEditor():
""" Returns the Global editor instance """
if Editor.editor is None:
Editor(None)
return Editor.editor
class Editor(ApplicationBase, MainWindow):
""" Editor sets up all subsystems and provides access to them """
editor = None
def __init__(self, options, mapfile, *args, **kwargs):
Editor.editor = self
self._filemanager = None
self._options = options
self._mapfile = mapfile
self._eventlistener = None
self._pluginmanager = None
self._inited = False
self._mapview = None
self._mapviewlist = []
self._mapgroup = None
self._mapbar = None
self._maparea = None
self._mapeditor = None
self._file_menu = None
self._edit_menu = None
self._view_menu = None
self._tools_menu = None
self._help_menu = None
self._change_map = -1
self._settings = TDS
self._lighting_mode = int(TDS.get("FIFE", "Lighting"))
self._help_dialog = None
self._toolbar_docked = False
self._toolbar_dockname = ""
self._toolbox_docked = False
self._toolbox_dockname = ""
ApplicationBase.__init__(self, TDS, *args, **kwargs)
MainWindow.__init__(self, *args, **kwargs)
def _initTools(self):
""" Initializes tools """
if self._options.plugin_dir is not None:
sys.path.append(os.path.abspath(self._options.plugin_dir))
self._pluginmanager = plugin.PluginManager(self.getSettings(), self._options.plugin_dir)
self._filemanager = FileManager()
self._toolbar.adaptLayout()
self._mapeditor = MapEditor()
def _initGui(self):
""" Sets up the GUI """
screen_width = self.engine.getSettings().getScreenWidth()
screen_height = self.engine.getSettings().getScreenHeight()
MainWindow.initGui(self, screen_width, screen_height)
self._toolbox = ToolBar(name="ToolBox", title=u"", orientation=1)
self._toolbox.position_technique = "explicit"
self._toolbox.position = (150, 150)
self._mapbar = ToolBar(name="MapBar", panel_size=20)
self._mapbar.setDocked(True)
self._maparea = pychan.widgets.VBox()
self._maparea.opaque = False
self._maparea.is_focusable = True
# Capture mouse and key events for EventListener
cw = self._maparea
cw.capture(self.__sendMouseEvent, "mouseEntered")
cw.capture(self.__sendMouseEvent, "mouseExited")
cw.capture(self.__sendMouseEvent, "mousePressed")
cw.capture(self.__sendMouseEvent, "mouseReleased")
cw.capture(self.__sendMouseEvent, "mouseClicked")
cw.capture(self.__sendMouseEvent, "mouseMoved")
cw.capture(self.__sendMouseEvent, "mouseWheelMovedUp")
cw.capture(self.__sendMouseEvent, "mouseWheelMovedDown")
cw.capture(self.__sendMouseEvent, "mouseDragged")
cw.capture(self.__sendKeyEvent, "keyPressed")
cw.capture(self.__sendKeyEvent, "keyReleased")
self._centralwidget.addChild(self._mapbar)
self._centralwidget.addChild(self._maparea)
self._initActions()
self._toolbox.show()
events.preMapClosed.connect(self._mapRemoved)
def _initActions(self):
""" Initializes toolbar and menubar buttons """
exitAction = Action(u"Exit", "gui/icons/quit.png")
exitAction.helptext = u"Exit program"
action.activated.connect(self.quit, sender=exitAction)
self._file_menu = Menu(name=u"File")
self._file_menu.addAction(exitAction)
self._edit_menu = Menu(name=u"Edit")
self._view_menu = Menu(name=u"View")
self._tools_menu = Menu(name=u"Tools")
self._window_menu = Menu(name=u"Window")
self._help_menu = Menu(name=u"Help")
self._action_show_statusbar = Action(u"Statusbar", checkable=True)
self._action_show_statusbar.helptext = u"Toggle statusbar"
action.activated.connect(self.toggleStatusbar, sender=self._action_show_statusbar)
self._action_show_toolbar = Action(u"Toolbar", checkable=True)
self._action_show_toolbar.helptext = u"Toggle toolbar"
action.activated.connect(self.toggleToolbar, sender=self._action_show_toolbar)
self._action_show_toolbox = Action(u"Tool box", checkable=True)
self._action_show_toolbox.helptext = u"Toggle tool box"
action.activated.connect(self.toggleToolbox, sender=self._action_show_toolbox)
self._view_menu.addAction(self._action_show_statusbar)
self._view_menu.addAction(self._action_show_toolbar)
self._view_menu.addAction(self._action_show_toolbox)
self._view_menu.addSeparator()
#These 3 are enabled by default therefore should be checked
self._action_show_statusbar.setChecked(True)
self._action_show_toolbar.setChecked(True)
self._action_show_toolbox.setChecked(True)
test_action1 = Action(u"Cycle buttonstyles", "gui/icons/cycle_styles.png")
test_action1.helptext = u"Cycles button styles. There are currently four button styles."
action.activated.connect(self._actionActivated, sender=test_action1)
self._view_menu.addAction(test_action1)
test_action2 = Action(u"Toggle Blocking")
test_action2.helptext = u"Toggles the blocking infos for the instances."
action.activated.connect(self.toggleBlocking, sender=test_action2)
self._view_menu.addAction(test_action2)
test_action3 = Action(u"Toggle Grid")
test_action3.helptext = u"Toggles the grids of the map."
action.activated.connect(self.toggleGrid, sender=test_action3)
self._view_menu.addAction(test_action3)
test_action4 = Action(u"Toggle Coordinates")
test_action4.helptext = u"Toggles the coordinates of the map."
action.activated.connect(self.toggleCoordinates, sender=test_action4)
self._view_menu.addAction(test_action4)
self._mapgroup = ActionGroup(exclusive=True, name="Mapgroup")
self._mapbar.addAction(self._mapgroup)
self._window_menu.addAction(self._mapgroup)
help_action = Action(u"Help", "gui/icons/help.png")
help_action.helptext = u"Displays a window with some simple instructions"
action.activated.connect(self._showHelpDialog, sender=help_action)
self._help_menu.addAction(help_action)
self._menubar.addMenu(self._file_menu)
self._menubar.addMenu(self._edit_menu)
self._menubar.addMenu(self._view_menu)
self._menubar.addMenu(self._tools_menu)
self._menubar.addMenu(self._window_menu)
self._menubar.addMenu(self._help_menu)
def _actionActivated(self, sender):
self._toolbar.button_style += 1
def _showHelpDialog(self, sender):
""" Shows the help dialog """
if self._help_dialog is not None:
self._help_dialog.show()
return
self._help_dialog = pychan.loadXML("gui/help.xml")
self._help_dialog.findChild(name="closeButton").capture(self._help_dialog.hide)
f = open('lang/infotext.txt', 'r')
self._help_dialog.findChild(name="helpText").text = unicode(f.read())
f.close()
self._help_dialog.show()
def toggleStatusbar(self):
""" Toggles status bar """
statusbar = self.getStatusBar()
if statusbar.max_size[1] > 0:
statusbar.min_size=(statusbar.min_size[0], 0)
statusbar.max_size=(statusbar.max_size[0], 0)
self._action_show_statusbar.setChecked(False)
else:
statusbar.min_size=(statusbar.min_size[0], statusbar.min_size[0])
statusbar.max_size=(statusbar.max_size[0], statusbar.max_size[0])
self._action_show_statusbar.setChecked(True)
statusbar.adaptLayout()
def toggleToolbar(self):
""" Toggles toolbar """
toolbar = self.getToolBar()
if toolbar.isVisible():
self._toolbar_docked = toolbar.isDocked()
self._toolbar_dockname = toolbar.dockareaname
toolbar.hide()
self._action_show_toolbar.setChecked(False)
else:
if not self._toolbar_docked:
tx = toolbar.x
ty = toolbar.y
toolbar.show()
toolbar.x = tx
toolbar.y = ty
else:
toolbar.setDocked(True)
self.dockWidgetTo(toolbar, self._toolbar_dockname)
self._action_show_toolbar.setChecked(True)
def toggleToolbox(self):
""" Toggles tool box """
toolbox = self.getToolbox()
if toolbox.isVisible():
self._toolbox_docked = toolbox.isDocked()
self._toolbox_dockname = toolbox.dockareaname
toolbox.hide()
self._action_show_toolbox.setChecked(False)
else:
if not self._toolbox_docked:
tx = toolbox.x
ty = toolbox.y
toolbox.show()
toolbox.x = tx
toolbox.y = ty
else:
toolbox.setDocked(True)
self.dockWidgetTo(toolbox, self._toolbox_dockname)
self._action_show_toolbox.setChecked(True)
#toolbox.adaptLayout()
def toggleBlocking(self, sender):
if self._mapview is not None:
for cam in self._mapview.getMap().getCameras():
r = fife.BlockingInfoRenderer.getInstance(cam)
r.setEnabled(not r.isEnabled())
def toggleGrid(self, sender):
if self._mapview is not None:
for cam in self._mapview.getMap().getCameras():
r = fife.GridRenderer.getInstance(cam)
r.setEnabled(not r.isEnabled())
def toggleCoordinates(self, sender):
if self._mapview is not None:
for cam in self._mapview.getMap().getCameras():
r = fife.CoordinateRenderer.getInstance(cam)
if not r.isEnabled():
r.clearActiveLayers()
color = str(self._settings.get("Colors", "Coordinate", "255,255,255"))
r.setFont(get_manager().getDefaultFont())
r.setColor(*[int(c) for c in color.split(',')])
for layer in self._mapview.getMap().getLayers():
if layer.areInstancesVisible():
r.addActiveLayer(layer)
r.setEnabled(True)
else:
r.setEnabled(False)
def getToolbox(self):
return self._toolbox
def getPluginManager(self):
return self._pluginmanager
def getEngine(self):
return self.engine
def getMapViews(self):
return self._mapviewlist
def getActiveMapView(self):
return self._mapview
def getSettings(self):
return self._settings;
def getObject(self):
return self._mapeditor.getObject()
def showMapView(self, mapview):
""" Switches to mapview. """
if mapview is None or mapview == self._mapview:
return
if self._mapview != None and mapview != self._mapview:
# need to disable the cameras from the previous map
# if it exists before switching
if self._mapview.getMap() != None:
for cam in self._mapview.getMap().getCameras():
cam.resetRenderers()
cam.setEnabled(False)
# if light model is set then enable LightRenderer for all layers
if self._lighting_mode is not 0:
for cam in mapview.getMap().getCameras():
renderer = fife.LightRenderer.getInstance(cam)
renderer.activateAllLayers(mapview.getMap())
renderer.setEnabled(not renderer.isEnabled())
events.preMapShown.send(sender=self, mapview=mapview)
self._mapview = mapview
self._mapview.show()
events.postMapShown.send(sender=self, mapview=mapview)
def createListener(self):
""" Creates the event listener. This is called by ApplicationBase """
if self._eventlistener is None:
self._eventlistener = EventListener(self.engine)
return self._eventlistener
def getEventListener(self):
""" Returns the event listener """
return self._eventlistener
def newMapView(self, map):
""" Creates a new map view """
mapview = MapView(map)
self._mapviewlist.append(mapview)
map_action = Action(unicode(map.getId()))
action.activated.connect(cbwa(self.showMapView, mapview), sender=map_action, weak=False)
self._mapgroup.addAction(map_action)
self.showMapView(mapview)
events.mapAdded.send(sender=self, map=map)
return mapview
def _mapRemoved(self, mapview):
index = self._mapviewlist.index(mapview)-1
for cam in mapview.getMap().getCameras():
cam.resetRenderers()
cam.setEnabled(False)
self._mapviewlist.remove(mapview)
# Remove tab
for map_action in self._mapgroup.getActions():
if map_action.text == unicode(mapview.getMap().getId()):
self._mapgroup.removeAction(map_action)
break
# Change mapview
if len(self._mapviewlist) > 0:
if index < 0:
index = 0
self._change_map = index
else:
self._mapview = None
def openFile(self, path):
""" Opens a file """
parts = path.split(os.sep)
for mapview in self._mapviewlist:
if path == mapview._map.getFilename():
self.getStatusBar().text = u"Map already loaded, omitting map " + parts[-1]
return
events.onOpenMapFile.send(sender=self, path=path)
try:
map = None
fife_loader = fife.MapLoader(self.engine.getModel(), self.engine.getVFS(), self.engine.getImageManager(), self.engine.getRenderBackend())
if self._lighting_mode == 0 and fife_loader.isLoadable(path):
map = fife_loader.load(path)
else:
# TODO: vtchill - once lights are supported by the c++ map loader this can be removed
map = loaders.loadMapFile(path, self.engine, extensions = {'lights': True})
if map:
self.getStatusBar().text = u"Loaded map: " + parts[-1]
return self.newMapView(map)
else:
self.getStatusBar().text = u"Map could not be loaded: " + parts[-1]
return None
except:
traceback.print_exc(sys.exc_info()[1])
errormsg = u"Opening map failed:\n"
errormsg += u"File: "+unicode(path, sys.getfilesystemencoding())+u"\n"
errormsg += u"Error: "+unicode(sys.exc_info()[1])
ErrorDialog(errormsg)
return None
def saveAll(self):
""" Saves all open maps """
tmpview = self._mapview
for mapview in self._mapviewlist:
self._mapview = mapview
self._filemanager.save()
self._mapview = tmpview
def quit(self):
""" Quits the editor. An onQuit signal is sent before the application closes """
events.onQuit.send(sender=self)
self._pluginmanager.stop()
self._settings.saveSettings()
ApplicationBase.quit(self)
def _pump(self):
""" Called once per frame """
# ApplicationBase and Engine should be done initializing at this point
if self._inited == False:
self._initGui()
self._initTools()
if self._mapfile: self.openFile(self._mapfile)
self._inited = True
# FIXME: This isn't very nice, but it is needed to change the map
# outside the callback.
if self._change_map >= 0 and len(self._mapviewlist) > 0:
if self._change_map >= len(self._mapviewlist):
self._change_map = len(self._mapviewlist)-1
mapview = self._mapviewlist[self._change_map]
self.showMapView(mapview)
self._change_map = -1
events.onPump.send(sender=self)
def __sendMouseEvent(self, event, **kwargs):
""" Function used to capture mouse events for EventListener """
ms_event = fife.MouseEvent
type = event.getType()
if type == ms_event.MOVED:
mouseMoved.send(sender=self._maparea, event=event)
elif type == ms_event.PRESSED:
mousePressed.send(sender=self._maparea, event=event)
elif type == ms_event.RELEASED:
mouseReleased.send(sender=self._maparea, event=event)
elif type == ms_event.WHEEL_MOVED_DOWN:
mouseWheelMovedDown.send(sender=self._maparea, event=event)
elif type == ms_event.WHEEL_MOVED_UP:
mouseWheelMovedUp.send(sender=self._maparea, event=event)
elif type == ms_event.CLICKED:
mouseClicked.send(sender=self._maparea, event=event)
elif type == ms_event.ENTERED:
mouseEntered.send(sender=self._maparea, event=event)
elif type == ms_event.EXITED:
mouseExited.send(sender=self._maparea, event=event)
elif type == ms_event.DRAGGED:
mouseDragged.send(sender=self._maparea, event=event)
def __sendKeyEvent(self, event, **kwargs):
""" Function used to capture key events for EventListener """
type = event.getType()
if type == fife.KeyEvent.PRESSED:
keyPressed.send(sender=self._maparea, event=event)
elif type == fife.KeyEvent.RELEASED:
keyReleased.send(sender=self._maparea, event=event)
|