本文整理匯總了Python中Zone.Zone.fill_with_tile方法的典型用法代碼示例。如果您正苦於以下問題:Python Zone.fill_with_tile方法的具體用法?Python Zone.fill_with_tile怎麽用?Python Zone.fill_with_tile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zone.Zone
的用法示例。
在下文中一共展示了Zone.fill_with_tile方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: create
# 需要導入模塊: from Zone import Zone [as 別名]
# 或者: from Zone.Zone import fill_with_tile [as 別名]
def create(self, width, height, zonewidth, zoneheight):
"Créer une carte vierge"
assert width > 0
assert height > 0
assert zonewidth > 0
assert zoneheight > 0
# resize zones and the map widget
Zone.WIDTH = zonewidth
Zone.HEIGHT = zoneheight
self.resize(Zone.WIDTH, Zone.HEIGHT)
# build tile-items at first load
if not self.isEnabled():
self.build_tiles()
self.setEnabled(True)
self.set_cursor_visible(True)
self.width = width
self.height = height
del self.zones[:]
for i in xrange(width * height):
zone = Zone(self)
zone.fill_with_tile(0)
self.zones.append(zone)
self.filename = None
self.set_current_zone(0)
示例2: add_column
# 需要導入模塊: from Zone import Zone [as 別名]
# 或者: from Zone.Zone import fill_with_tile [as 別名]
def add_column(self, where, tile_id):
assert where >= 0 and where <= self.width
for i in xrange(where, len(self.zones) + self.height, self.width + 1):
zone = Zone(self)
zone.fill_with_tile(tile_id)
self.zones.insert(i, zone)
self.width += 1
self.set_current_zone(0)
示例3: add_line
# 需要導入模塊: from Zone import Zone [as 別名]
# 或者: from Zone.Zone import fill_with_tile [as 別名]
def add_line(self, where, tile_id):
assert where >= 0 and where <= self.height
for i in xrange(self.width):
zone = Zone(self)
zone.fill_with_tile(tile_id)
self.zones.insert(self.width * where, zone)
self.height += 1
self.set_current_zone(0)