diff orpg/mapper/map.py @ 227:81d0bfd5e800 alpha

Traipse Alpha 'OpenRPG' {100612-00} Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the productivity of the user. Update Summary (Preparing to close updates) New Features: New to Map, can re-order Grid, Miniatures, and Whiteboard layer draw order Fixes: Fix to InterParse that was causing an Infernal Loop with Namespace Internal Fix to XML data, removed old Minidom and switched to Element Tree Fix to Server that was causing eternal attempt to find a Server ID, in Register Rooms thread Fix to metaservers.xml file not being created
author sirebral
date Sat, 12 Jun 2010 03:50:37 -0500
parents ff19dd30064b
children
line wrap: on
line diff
--- a/orpg/mapper/map.py	Fri Jan 15 22:45:51 2010 -0600
+++ b/orpg/mapper/map.py	Sat Jun 12 03:50:37 2010 -0500
@@ -21,11 +21,11 @@
 # Author: OpenRPG
 # Maintainer:
 # Version:
-#   $Id: map.py,v 1.73 2007/12/07 20:39:49 digitalxero Exp $
+#   $Id: map.py,v Traipse 'Ornery-Orc' prof.ebral Exp $
 #
 # Description:
 #
-__version__ = "$Id: map.py,v 1.73 2007/12/07 20:39:49 digitalxero Exp $"
+__version__ = "$Id: map.py,v Traipse 'Ornery-Orc' prof.ebral Exp $"
 
 from map_version import MAP_VERSION
 from map_msg import *
@@ -45,6 +45,8 @@
 from images import ImageHandler
 from orpg.orpgCore import component
 from orpg.tools.orpg_settings import settings
+from xml.etree.ElementTree import ElementTree, Element, parse
+from xml.etree.ElementTree import fromstring, tostring
 
 # Various marker modes for player tools on the map
 MARKER_MODE_NONE = 0
@@ -156,7 +158,8 @@
             else: pass
         if not ImageHandler.Queue.empty():
             (path, image_type, imageId) = ImageHandler.Queue.get()
-            if path == 'failed': img = wx.Image(dir_struct["icon"] + "failed.png", wx.BITMAP_TYPE_PNG)
+            if (path == 'failed' or path == dir_struct["icon"] + "failed.png"): 
+                img = wx.Image(dir_struct["icon"] + "failed.png", wx.BITMAP_TYPE_PNG)
             else: img = wx.ImageFromMime(path[1], path[2])
             try:
                 # Now, apply the image to the proper object
@@ -250,27 +253,44 @@
         topleft1 = self.GetViewStart()
         topleft = [topleft1[0]*scrollsize[0], topleft1[1]*scrollsize[1]]
         if (clientsize[0] > 1) and (clientsize[1] > 1):
-            self.SetBackgroundStyle(wx.BG_STYLE_CUSTOM)
-            dc = wx.AutoBufferedPaintDC(self)
+            dc = wx.MemoryDC()
+            bmp = wx.EmptyBitmap(clientsize[0]+1, clientsize[1]+1)
+            dc.SelectObject(bmp)
             dc.SetPen(wx.TRANSPARENT_PEN)
             dc.SetBrush(wx.Brush(self.GetBackgroundColour(), wx.SOLID))
             dc.DrawRectangle(0,0,clientsize[0]+1,clientsize[1]+1)
             dc.SetDeviceOrigin(-topleft[0], -topleft[1])
             dc.SetUserScale(scale, scale)
+
+            layer_order = []
+            for i in xrange (0, len(self.parent.layer_handlers)-1):
+                if self.parent.layer_tabs.GetPageText(i) in ('Background', 'Fog', 'General'): pass
+                else: layer_order.append(self.parent.layer_tabs.GetPageText(i))
             self.layers['bg'].layerDraw(dc, scale, topleft, clientsize)
-            self.layers['grid'].layerDraw(dc, [topleft[0]/scale, topleft[1]/scale], 
-                [clientsize[0]/scale, clientsize[1]/scale])
-            self.layers['miniatures'].layerDraw(dc, [topleft[0]/scale, topleft[1]/scale], 
-                [clientsize[0]/scale, clientsize[1]/scale])
-            self.layers['whiteboard'].layerDraw(dc)
+
+            for layer in layer_order:
+                if layer == 'Grid': self.layers['grid'].layerDraw(dc, [topleft[0]/scale, topleft[1]/scale], 
+                    [clientsize[0]/scale, clientsize[1]/scale])
+                if layer == 'Miniatures': self.layers['miniatures'].layerDraw(dc, [topleft[0]/scale, topleft[1]/scale], 
+                    [clientsize[0]/scale, clientsize[1]/scale])
+                if layer == 'Whiteboard': self.layers['whiteboard'].layerDraw(dc)
+
             self.layers['fog'].layerDraw(dc, topleft, clientsize)
             dc.SetPen(wx.NullPen)
             dc.SetBrush(wx.NullBrush)
+            dc.SelectObject(wx.NullBitmap); del dc
+            wdc = self.preppaint()
+            wdc.DrawBitmap(bmp, topleft[0], topleft[1])
             if settings.get_setting("AlwaysShowMapScale") == "1":
-                self.showmapscale(dc)
+                self.showmapscale(wdc)
         try: evt.Skip()
         except: pass
 
+    def preppaint(self):
+        dc = wx.PaintDC(self)
+        self.PrepareDC(dc)
+        return (dc)
+
     def showmapscale(self, dc):
         scalestring = "Scale x" + `self.layers['grid'].mapscale`[:3]
         (textWidth, textHeight) = dc.GetTextExtent(scalestring)
@@ -367,8 +387,6 @@
             dc.SetUserScale(self.layers['grid'].mapscale,self.layers['grid'].mapscale)
             # Grab the current map position
             pos = self.snapMarker( evt.GetLogicalPosition( dc ) )
-            # Enable brush optimizations
-            # dc.SetOptimization( True )
             # Set up the pen used for drawing our marker
             dc.SetPen( wx.Pen(wx.RED, 1, wx.LONG_DASH) )
             # Now, based on the marker mode, draw the right thing
@@ -386,8 +404,6 @@
                 # As long as we are in marker mode, we ned to update the stop point
                 self.markerStop = pos
             dc.SetPen(wx.NullPen)
-            # Disable brush optimizations
-            #dc.SetOptimization( False )
             del dc
 
     def on_tape_down(self, evt):
@@ -403,8 +419,6 @@
         self.markerMode = MARKER_MODE_MEASURE
         # Erase the old line if her have one
         if self.markerStart.x != -1 and self.markerStart.y != -1:
-            # Enable brush optimizations
-            #dc.SetOptimization( True )
             # Set up the pen used for drawing our marker
             dc.SetPen( wx.Pen(wx.RED, 1, wx.LONG_DASH) )
             # Set the DC function that we need
@@ -416,8 +430,6 @@
             # Restore the default DC function and pen
             dc.SetLogicalFunction(wx.COPY)
             dc.SetPen(wx.NullPen)
-            # Disable brush optimizations
-            #dc.SetOptimization( False )
         # Save our current start and reset the stop value
         self.markerStart = pos
         self.markerStop = pos
@@ -617,15 +629,16 @@
            --Snowdog 5/27/03
         """
         try:
-            #parse the map DOM
-            xml_dom = parseXml(xml)
+            xml_dom = fromstring(xml)
             if xml_dom == None: return
-            node_list = xml_dom.getElementsByTagName("map")
+            node_list = xml_dom.findall("map")
+            if len(node_list) < 1: 
+                if xml_dom.tag == 'map': node_list = [xml_dom]
             if len(node_list) < 1: pass
             else:
                 # set map version to incoming data so layers can convert
-                self.map_version = node_list[0].getAttribute("version")
-                action = node_list[0].getAttribute("action")
+                self.map_version = node_list[0].get("version")
+                action = node_list[0].get("action")
                 if action == "new":
                     self.layers = {}
                     try: self.layers['bg'] = layer_back_ground(self)
@@ -638,33 +651,33 @@
                     except: pass
                     try: self.layers['fog'] = fog_layer(self)
                     except: pass
-                sizex = node_list[0].getAttribute("sizex")
+                sizex = node_list[0].get("sizex") or ''
                 if sizex != "":
                     sizex = int(float(sizex))
                     sizey = self.size[1]
                     self.set_size((sizex,sizey))
                     self.size_changed = 0
-                sizey = node_list[0].getAttribute("sizey")
+                sizey = node_list[0].get("sizey") or ''
                 if sizey != "":
                     sizey = int(float(sizey))
                     sizex = self.size[0]
                     self.set_size((sizex,sizey))
                     self.size_changed = 0
-                children = node_list[0]._get_childNodes()
+                children = node_list[0].getchildren()
                 #fog layer must be computed first, so that no data is inadvertently revealed
                 for c in children:
-                    name = c._get_nodeName()
+                    name = c.tag
                     if name == "fog": self.layers[name].layerTakeDOM(c)
                 for c in children:
-                    name = c._get_nodeName()
+                    name = c.tag
                     if name != "fog": self.layers[name].layerTakeDOM(c)
                 # all map data should be converted, set map version to current version
                 self.map_version = MAP_VERSION
-                self.Refresh(False)
-            xml_dom.unlink()  # eliminate circular refs
+                self.Refresh(True)
         except: pass
 
     def re_ids_in_xml(self, xml):
+        debug(('Developers note. Deprecated call to re_ids_in_xml!!'), parents=True)
         new_xml = ""
         tmp_map = map_msg()
         xml_dom = parseXml(str(xml))
@@ -709,20 +722,23 @@
         self.root_dir = os.getcwd()
         self.current_layer = 2
         self.layer_tabs = orpgTabberWnd(self, style=FNB.FNB_NO_X_BUTTON|FNB.FNB_BOTTOM|FNB.FNB_NO_NAV_BUTTONS)
+
         self.layer_handlers = []
-        self.layer_handlers.append(background_handler(self.layer_tabs,-1,self.canvas))
-        self.layer_tabs.AddPage(self.layer_handlers[0],"Background")
-        self.layer_handlers.append(grid_handler(self.layer_tabs,-1,self.canvas))
-        self.layer_tabs.AddPage(self.layer_handlers[1],"Grid")
-        self.layer_handlers.append(miniatures_handler(self.layer_tabs,-1,self.canvas))
-        self.layer_tabs.AddPage(self.layer_handlers[2],"Miniatures", True)
-        self.layer_handlers.append(whiteboard_handler(self.layer_tabs,-1,self.canvas))
-        self.layer_tabs.AddPage(self.layer_handlers[3],"Whiteboard")
-        self.layer_handlers.append(fog_handler(self.layer_tabs,-1,self.canvas))
-        self.layer_tabs.AddPage(self.layer_handlers[4],"Fog")
-        self.layer_handlers.append(map_handler(self.layer_tabs,-1,self.canvas))
-        self.layer_tabs.AddPage(self.layer_handlers[5],"General")
+        self.layer_handlers.append(background_handler(self.layer_tabs, -1, self.canvas))
+        self.layer_tabs.AddPage(self.layer_handlers[0], "Background")
+        self.layer_handlers.append(grid_handler(self.layer_tabs, -1, self.canvas))
+        self.layer_tabs.AddPage(self.layer_handlers[1], "Grid")
+        self.layer_handlers.append(miniatures_handler(self.layer_tabs, -1, self.canvas))
+        self.layer_tabs.AddPage(self.layer_handlers[2], "Miniatures", True)
+        self.layer_handlers.append(whiteboard_handler(self.layer_tabs, -1, self.canvas))
+        self.layer_tabs.AddPage(self.layer_handlers[3], "Whiteboard")
+        self.layer_handlers.append(fog_handler(self.layer_tabs, -1, self.canvas))
+        self.layer_tabs.AddPage(self.layer_handlers[4], "Fog")
+        self.layer_handlers.append(map_handler(self.layer_tabs, -1, self.canvas))
+        self.layer_tabs.AddPage(self.layer_handlers[5], "General")
         self.layer_tabs.SetSelection(2)
+
+        self.layer_order = {1: 'grid', 2: 'miniatures', 3: 'whiteboard'}
         self.sizer = wx.BoxSizer(wx.VERTICAL)
         self.sizer.Add(self.canvas, 1, wx.EXPAND)
         self.sizer.Add(self.layer_tabs, 0, wx.EXPAND)