当前位置: 首页>>代码示例>>Python>>正文


Python Command.__init__方法代码示例

本文整理汇总了Python中Command.Command.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python Command.__init__方法的具体用法?Python Command.__init__怎么用?Python Command.__init__使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Command.Command的用法示例。


在下文中一共展示了Command.__init__方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self, plane, base, nb_drop):
     Command.__init__(self)
     if plane is None or base is None:
         raise "DropMilitarsCommand : Null reference"
     self.planeSrc = plane
     self.baseTarget = base
     self.quantity = nb_drop
开发者ID:cod-insa,项目名称:cod-insa-2014,代码行数:9,代码来源:DropMilitarsCommand.py

示例2: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self, config):
   Command.__init__(self, config)
   if self.config.has_key('directory') and not os.path.isdir(self.config['directory']):
     raise Exception("directory '%s' does not exists" % (self.config['directory'],))
   if self.config.has_key('directory') and not os.listdir(self.config['directory']):
     raise Exception("directory '%s' is empty" % (self.config['directory'],))
   if not self.config.has_key('count'):
     self.config['count'] = 1
开发者ID:serl,项目名称:rasplarm,代码行数:10,代码来源:Mp3.py

示例3: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self, plane, mil_qty, fuel_qty, delete):
     Command.__init__(self)
     if plane is None:
         raise "LoadRessourcesCommand : Null reference"
     self.planeSrc = plane
     self.militarQuantity = mil_qty
     self.fuelQuantity = fuel_qty
     self.delete_ressources = delete
开发者ID:cod-insa,项目名称:cod-insa-2014,代码行数:10,代码来源:ExchangeResourcesCommand.py

示例4: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self, config, **params):
     Command.__init__(self, config, **params)
开发者ID:far-rel,项目名称:Pails,代码行数:4,代码来源:Routes.py

示例5: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self, Constants.SHUTDOWN_TAG)
开发者ID:tadgh,项目名称:Shizuka,代码行数:4,代码来源:ShutdownCommand.py

示例6: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
	def __init__(self, main):
		Command.__init__(self, main)
开发者ID:Joby890,项目名称:LSV2,代码行数:4,代码来源:ScriptCommand.py

示例7: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
	def __init__(self):
		Command.__init__(self)
开发者ID:longstl,项目名称:python_mud,代码行数:4,代码来源:Cast.py

示例8: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
	def __init__(self, template):
		Command.__init__(self)
		self.eventTemplate = template
开发者ID:longstl,项目名称:python_mud,代码行数:5,代码来源:Emote.py

示例9: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self, plane, base):
     Command.__init__(self)
     if base is None or plane is None:
         raise "LandCommand : null reference"
     self.plane = plane
     self.base = base
开发者ID:cod-insa,项目名称:cod-insa-2014,代码行数:8,代码来源:LandCommand.py

示例10: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self, plane, quantity_fuel):
     Command.__init__(self)
     if plane is None:
         raise "FillFuelTankCommand : Null reference"
     self.planeSrc = plane
     self.quantity = quantity_fuel
开发者ID:cod-insa,项目名称:cod-insa-2014,代码行数:8,代码来源:FillFuelTankCommand.py

示例11: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self, plane):
     Command.__init__(self)
     if plane is None:
         raise "WaitCommand : null reference"
     self.plane = plane
开发者ID:cod-insa,项目名称:cod-insa-2014,代码行数:7,代码来源:WaitCommand.py

示例12: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self, Constants.RESTART_TAG)
开发者ID:tadgh,项目名称:Shizuka,代码行数:4,代码来源:RestartCommand.py

示例13: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self):
     Command.__init__(self, Constants.NETWORK_INFO_TAG)
开发者ID:tadgh,项目名称:Shizuka,代码行数:4,代码来源:NetworkInfoCommand.py

示例14: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self, plane, target):
     Command.__init__(self)
     if p is None or target is None:
         raise Error("Attack Command :  null reference")
     self.planeSrc = plane
     self.planeTarget = target
开发者ID:cod-insa,项目名称:cod-insa-2014,代码行数:8,代码来源:AttackCommand.py

示例15: __init__

# 需要导入模块: from Command import Command [as 别名]
# 或者: from Command.Command import __init__ [as 别名]
 def __init__(self, plane, coord):
     Command.__init__(self)
     if plane is None:
         raise "MoveCommand : null reference"
     self.plane = plane
     self.destination = coord
开发者ID:cod-insa,项目名称:cod-insa-2014,代码行数:8,代码来源:MoveCommand.py


注:本文中的Command.Command.__init__方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。