From c4db3bcaf7b47a8c3d92e81c9945b80713c3d60a Mon Sep 17 00:00:00 2001 From: mekolat Date: Fri, 13 Nov 2015 12:46:17 -0500 Subject: do not use warp names --- tmx_converter.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tmx_converter.py b/tmx_converter.py index 676a2fe..9ddeaad 100755 --- a/tmx_converter.py +++ b/tmx_converter.py @@ -133,7 +133,6 @@ class ContentHandler(xml.sax.ContentHandler): self.imports = imports self.object = None self.mob_ids = set() - self.name_unique = 0; def setDocumentLocator(self, loc): self.locator = loc @@ -266,19 +265,13 @@ class ContentHandler(xml.sax.ContentHandler): ]) ) elif isinstance(obj, Warp): - obj_name = obj.name[:15] - if obj.name != obj_name: - print('Warning: warp name truncated: %r -> %r' % (obj.name, obj_name)) - obj_name += "#%s%d" % (self.base,self.name_unique) self.warps.write( SEPARATOR.join([ '%s,%d,%d' % (self.base, obj.x, obj.y), 'warp', - obj_name, '%d,%d,%s,%d,%d\n' % (obj.w, obj.h, obj.dest_map, obj.dest_tile_x, obj.dest_tile_y), ]) ) - self.name_unique += 1 if name == u'data': if self.state is State.DATA: -- cgit v1.2.3-60-g2f50