annotate orpg/mapper/images.py @ 138:1ed2feab0db9 alpha

Traipse Alpha 'OpenRPG' {091021-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 (Cleaning up for Beta) Added Bookmarks Fix to Remote Admin Commands Minor fix to text based Server Fix to Pretty Print, from Core Fix to Splitter Nodes not being created Fix to massive amounts of images loading, from Core Added 'boot' command to remote admin Added confirmation window for sent nodes Minor changes to allow for portability to an OpenSUSE linux OS Miniatures Layer pop up box allows users to turn off Mini labels, from FlexiRPG Zoom Mouse plugin added Images added to Plugin UI Switching to Element Tree Map efficiency, from FlexiRPG Added Status Bar to Update Manager default_manifest.xml renamed to default_upmana.xml Cleaner clode for saved repositories New TrueDebug Class in orpg_log (See documentation for usage) Mercurial's hgweb folder is ported to upmana Pretty important update that can help remove thousands of dead children from your gametree. Children, <forms />, <group_atts />, <horizontal />, <cols />, <rows />, <height />, etc... are all tags now. Check your gametree and look for dead children!! New Gametree Recursion method, mapping, and context sensitivity. !!Alpha Still- Watch out for infinite loops!! New Syntax added for custom PC sheets Tip of the Day added, from Core and community Fixed Whiteboard ID to prevent random line or text deleting. Appended tr_ to ID's to prevent non updated clients from ruining the fix.
author sirebral
date Sat, 21 Nov 2009 03:19:34 -0600
parents 37d26a98883f
children 8e07c1a2c69b
rev   line source
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
1 # Copyright (C) 2000-2001 The OpenRPG Project
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
2 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
3 # openrpg-dev@lists.sourceforge.net
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
4 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
5 # This program is free software; you can redistribute it and/or modify
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
6 # it under the terms of the GNU General Public License as published by
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
7 # the Free Software Foundation; either version 2 of the License, or
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
8 # (at your option) any later version.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
9 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
10 # This program is distributed in the hope that it will be useful,
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
13 # GNU General Public License for more details.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
14 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
16 # along with this program; if not, write to the Free Software
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
18 # --
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
19 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
20 # File: mapper/images.py
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
21 # Author: OpenRPG
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
22 # Maintainer:
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
23 # Version:
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
24 # $Id: images.py,v 1.21 2007/12/11 04:07:15 digitalxero Exp $
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
25 #
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
26 # Description:
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
27 #
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
28 from __future__ import with_statement
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
29
133
37d26a98883f Traipse Alpha 'OpenRPG' {091010-00}
sirebral
parents: 118
diff changeset
30 import urllib, Queue, thread, time
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
31 from threading import Lock
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
32 from orpg.orpg_wx import *
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
33 from orpg.orpgCore import *
76
37a11fea3304 More clean up. Images now posts a Chat Info post if image doesn't load.
sirebral
parents: 71
diff changeset
34
66
c54768cffbd4 Traipse Dev 'OpenRPG' {090818-00}
sirebral
parents: 22
diff changeset
35 from orpg.dirpath import dir_struct
71
449a8900f9ac Code refining almost completed, for this round. Some included files are still in need of some clean up, but this is test worthy.
sirebral
parents: 66
diff changeset
36 from orpg.tools.orpg_log import logger
133
37d26a98883f Traipse Alpha 'OpenRPG' {091010-00}
sirebral
parents: 118
diff changeset
37 from orpg.tools.settings import settings
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
38
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
39 class ImageHandlerClass(object):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
40 __cache = {}
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
41 __fetching = {}
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
42 __queue = Queue.Queue(0)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
43 __lock = Lock()
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
44
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
45 def __new__(cls):
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
46 it = cls.__dict__.get("__it__")
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
47 if it is not None:
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
48 return it
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
49 cls.__it__ = it = object.__new__(cls)
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
50 return it
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
51
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
52 def load(self, path, image_type, imageId):
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
53 # Load an image, with a intermideary fetching image shown while it loads in a background thread
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
54 if self.__cache.has_key(path):
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
55 return wx.ImageFromMime(self.__cache[path][1],
118
217fb049bd00 Traipse Alpha 'OpenRPG' {091028-00}
sirebral
parents: 112
diff changeset
56 self.__cache[path][2])
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
57 if path not in self.__fetching:
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
58 self.__fetching[path] = True
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
59 #Start Image Loading Thread
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
60 thread.start_new_thread(self.__loadThread,
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
61 (path, image_type, imageId))
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
62 else:
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
63 if self.__fetching[path]:
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
64 thread.start_new_thread(self.__loadCacheThread,
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
65 (path, image_type, imageId))
118
217fb049bd00 Traipse Alpha 'OpenRPG' {091028-00}
sirebral
parents: 112
diff changeset
66 return wx.Bitmap(dir_struct["icon"] + "fetching.png", wx.BITMAP_TYPE_PNG)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
67
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
68 def directLoad(self, path):
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
69 # Directly load an image, no threads
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
70 if path in self.__cache:
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
71 return wx.ImageFromMime(self.__cache[path][1],
118
217fb049bd00 Traipse Alpha 'OpenRPG' {091028-00}
sirebral
parents: 112
diff changeset
72 self.__cache[path][2])
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
73 uriPath = urllib.unquote(path)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
74 try:
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
75 d = urllib.urlretrieve(uriPath)
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
76 # We have to make sure that not only did we fetch something, but that
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
77 # it was an image that we got back.
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
78 if d[0] and d[1].getmaintype() == "image":
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
79 with self.__lock:
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
80 self.__cache[path] = (path, d[0], d[1].gettype(), None)
118
217fb049bd00 Traipse Alpha 'OpenRPG' {091028-00}
sirebral
parents: 112
diff changeset
81 return wx.ImageFromMime(self.__cache[path][1], self.__cache[path][2])
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
82 else:
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
83 logger.general("Image refused to load or URI did not "
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
84 "reference a valid image: " + path, True)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
85 return None
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
86 except IOError:
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
87 logger.general("Unable to resolve/open the specified URI; "
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
88 "image was NOT loaded: " + path, True)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
89 return None
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
90
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
91 def cleanCache(self):
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
92 # Shrinks the Cache down to the proper size
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
93 try:
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
94 cacheSize = int(settings.get("ImageCacheSize"))
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
95 except:
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
96 cacheSize = 32
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
97 cache = self.__cache.keys()
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
98 cache.sort()
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
99 for key in cache[cacheSize:]:
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
100 del self.__cache[key]
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
101
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
102 def flushCache(self):
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
103 # This function will flush all images contained within the image cache.
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
104 with self.__lock:
88
763a04270cf6 Traipse Alpha 'OpenRPG' {090917-02}
sirebral
parents: 77
diff changeset
105 self.__cache = {}
763a04270cf6 Traipse Alpha 'OpenRPG' {090917-02}
sirebral
parents: 77
diff changeset
106 self.__fetching = {}
763a04270cf6 Traipse Alpha 'OpenRPG' {090917-02}
sirebral
parents: 77
diff changeset
107 urllib.urlcleanup()
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
108
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
109 #Private Methods
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
110 def __loadThread(self, path, image_type, imageId):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
111 uriPath = urllib.unquote(path)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
112 try:
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
113 d = urllib.urlretrieve(uriPath)
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
114 # We have to make sure that not only did we fetch something, but that
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
115 # it was an image that we got back.
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
116 if d[0] and d[1].getmaintype() == "image":
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
117 with self.__lock:
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
118 self.__cache[path] = (path, d[0], d[1].gettype(), imageId)
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
119 self.__queue.put((self.__cache[path], image_type, imageId))
118
217fb049bd00 Traipse Alpha 'OpenRPG' {091028-00}
sirebral
parents: 112
diff changeset
120 if path in self.__fetching: del self.__fetching[path]
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
121 else:
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
122 logger.general("Image refused to load or URI did not "
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
123 "reference a valid image: " + path, True)
15
cab94a90f9dc Added 1.8.0 fix to log. Fixed problem with images that do not load the first
sirebral
parents: 3
diff changeset
124 del self.__fetching[path]
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
125 except IOError:
15
cab94a90f9dc Added 1.8.0 fix to log. Fixed problem with images that do not load the first
sirebral
parents: 3
diff changeset
126 del self.__fetching[path]
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
127 logger.general("Unable to resolve/open the specified URI; "
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
128 "image was NOT laoded: " + path, True)
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
129
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
130 def __loadCacheThread(self, path, image_type, imageId):
99
a647e0e8f520 Traipse Alpha 'OpenRPG' {090925-00}
sirebral
parents: 88
diff changeset
131 try:
a647e0e8f520 Traipse Alpha 'OpenRPG' {090925-00}
sirebral
parents: 88
diff changeset
132 st = time.time()
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
133 while path in self.__fetching and self.__fetching[path] is not False:
99
a647e0e8f520 Traipse Alpha 'OpenRPG' {090925-00}
sirebral
parents: 88
diff changeset
134 time.sleep(0.025)
a647e0e8f520 Traipse Alpha 'OpenRPG' {090925-00}
sirebral
parents: 88
diff changeset
135 if (time.time()-st) > 120:
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
136 logger.general("Timeout: " + path, True)
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
137 del self.__fetching[path]
99
a647e0e8f520 Traipse Alpha 'OpenRPG' {090925-00}
sirebral
parents: 88
diff changeset
138 break
a647e0e8f520 Traipse Alpha 'OpenRPG' {090925-00}
sirebral
parents: 88
diff changeset
139 except:
a647e0e8f520 Traipse Alpha 'OpenRPG' {090925-00}
sirebral
parents: 88
diff changeset
140 del self.__fetching[path]
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
141 logger.general("Unable to resolve/open the specified URI; "
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
142 "image was NOT loaded: " + path, True)
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
143 return
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
144 with self.__lock:
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
145 if path in self.__cache:
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
146 logger.debug("Adding Image to Queue from Cache: " + str(self.__cache[path]))
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
147 self.__queue.put((self.__cache[path], image_type, imageId))
118
217fb049bd00 Traipse Alpha 'OpenRPG' {091028-00}
sirebral
parents: 112
diff changeset
148 else: self.__loadThread(path, image_type, imageId)
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
149
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
150 #Property Methods
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
151 def _getCache(self):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
152 return self.__cache
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
153
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
154 def _getQueue(self):
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
155 return self.__queue
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
156
112
61fc775862f7 Traipse Alpha 'OpenRPG' {091009-00}
sirebral
parents: 99
diff changeset
157 #Properties
0
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
158 Cache = property(_getCache)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
159 Queue = property(_getQueue)
4385a7d0efd1 Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff changeset
160
133
37d26a98883f Traipse Alpha 'OpenRPG' {091010-00}
sirebral
parents: 118
diff changeset
161 ImageHandler = ImageHandlerClass()