1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
# ###################################################
# Copyright (C) 2012 The Unknown Horizons Team
# team@unknown-horizons.org
# This file is part of Unknown Horizons.
#
# Unknown Horizons is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# ###################################################
from horizons.command import GenericCommand, GenericComponentCommand
from horizons.world.component.tradepostcomponent import TradePostComponent
from horizons.world.component.namedcomponent import NamedComponent
class SetTaxSetting(GenericCommand):
"""Sets the taxes for a settlement."""
def __init__(self, settlement, level, new_taxes):
super(SetTaxSetting, self).__init__(settlement, 'set_tax_setting', level, new_taxes)
GenericCommand.allow_network(SetTaxSetting)
class SetSettlementUpgradePermissions(GenericCommand):
"""Sets the new upgrade permissions for a level in a settlement."""
def __init__(self, settlement, level, allowed):
super(SetSettlementUpgradePermissions, self).__init__(settlement, 'set_upgrade_permissions', level, allowed)
GenericCommand.allow_network(SetSettlementUpgradePermissions)
class AddToBuyList(GenericComponentCommand):
"""Adds a Resource to buy_list of TradePost"""
def __init__(self, tradepost, res_id, limit):
super(AddToBuyList, self).__init__(tradepost, 'add_to_buy_list', res_id, limit)
GenericComponentCommand.allow_network(AddToBuyList)
class RemoveFromBuyList(GenericComponentCommand):
"""Removes a Resource from buy_list of TradePost"""
def __init__(self, tradepost, res_id):
super(RemoveFromBuyList, self).__init__(tradepost, 'remove_from_buy_list', res_id)
GenericComponentCommand.allow_network(RemoveFromBuyList)
class AddToSellList(GenericComponentCommand):
"""Adds a Resource to sell_list of TradePost"""
def __init__(self, tradepost, res_id, limit):
super(AddToSellList, self).__init__(tradepost, 'add_to_sell_list', res_id, limit)
GenericComponentCommand.allow_network(AddToSellList)
class RemoveFromSellList(GenericComponentCommand):
"""Removes a Resource from sell_list of TradePost"""
def __init__(self, tradepost, res_id):
super(RemoveFromSellList, self).__init__(tradepost, 'remove_from_sell_list', res_id)
GenericComponentCommand.allow_network(RemoveFromSellList)
class TransferResource(GenericCommand):
"""Transfers an amount of a resource from one Storage to another"""
def __init__(self, amount, res_id, transfer_from, transfer_to):
super(TransferResource, self).__init__(transfer_from, 'transfer_to_storageholder', amount, res_id, transfer_to.worldid)
GenericCommand.allow_network(TransferResource)
class SellResource(GenericComponentCommand):
"""The given tradepost attempts to sell the given amount of resource to the ship"""
def __init__(self, tradepost, ship, resource_id, amount):
super(SellResource, self).__init__(tradepost, 'sell_resource', ship.worldid, resource_id, amount)
GenericComponentCommand.allow_network(SellResource)
class BuyResource(GenericComponentCommand):
"""The given tradepost attempts to buy the given amount of resource from the ship"""
def __init__(self, tradepost, ship, resource_id, amount):
super(BuyResource, self).__init__(tradepost, 'buy_resource', ship.worldid, resource_id, amount)
GenericComponentCommand.allow_network(BuyResource)
class RenameObject(GenericComponentCommand):
"""Rename a NamedComponant"""
def __init__(self, namedcomponent, new_name):
super(RenameObject, self).__init__(namedcomponent, "set_name", new_name)
GenericComponentCommand.allow_network(RenameObject)
class EquipWeaponFromInventory(GenericCommand):
"""Equips a weapon to weapon storage from resource inventory"""
def __init__(self, obj, weapon_id, number):
super(EquipWeaponFromInventory, self).__init__(obj, "equip_from_inventory", weapon_id, number)
GenericCommand.allow_network(EquipWeaponFromInventory)
class UnequipWeaponToInventory(GenericCommand):
"""Equips a weapon to weapon storage from resource inventory"""
def __init__(self, obj, weapon_id, number):
super(UnequipWeaponToInventory, self).__init__(obj, "unequip_to_inventory", weapon_id, number)
GenericCommand.allow_network(UnequipWeaponToInventory)
class RouteConfigCommand(GenericCommand):
"""Use this for routeconfig actions.
There are too many small methods to use single commands.
"""
def __init__(self, obj, method, *args, **kwargs):
super(RouteConfigCommand, self).__init__(obj, method, *args, **kwargs)
def _get_object(self):
obj = super(RouteConfigCommand, self)._get_object()
return obj.route
GenericCommand.allow_network(RouteConfigCommand)
|