1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- class ActionRemovePlant: ActionInteractBase
- {
- PlantBase m_Plant;
-
- void ActionRemovePlant()
- {
- m_Text = "#remove_plant";
- }
-
- override typename GetInputType()
- {
- return ContinuousInteractActionInput;
- }
-
- override void CreateConditionComponents()
- {
- m_ConditionItem = new CCINone;
- m_ConditionTarget = new CCTCursor(UAMaxDistances.SMALL);
- }
- override bool ActionCondition( PlayerBase player, ActionTarget target, ItemBase item )
- {
- GardenBase garden_base;
- if ( Class.CastTo(garden_base, target.GetObject()))
- {
- Slot slot;
-
- array<string> selections = new array<string>;
- garden_base.GetActionComponentNameList(target.GetComponentIndex(), selections);
- string selection;
- for (int s = 0; s < selections.Count(); s++)
- {
- selection = selections[s];
- slot = garden_base.GetSlotBySelection( selection );
- if (slot)
- break;
- }
-
- if ( slot && slot.GetPlant() )
- {
- m_Plant = PlantBase.Cast(slot.GetPlant());
- if ( m_Plant.IsGrowing() || m_Plant.IsDry() || !m_Plant.HasCrops() || m_Plant.IsSpoiled())
- {
- return true;
- }
- }
- }
- return false;
- /*Object targetObject = target.GetObject();
- if ( targetObject != NULL && targetObject.IsInherited(PlantBase) )
- {
- PlantBase plant = PlantBase.Cast( targetObject );
-
- if ( plant.IsGrowing() || plant.IsDry() || !plant.HasCrops() || plant.IsSpoiled())
- {
- return true;
- }
- }
-
- return false;*/
- }
- override void OnExecuteServer( ActionData action_data )
- {
- if ( m_Plant )
- {
- //m_Plant.RemovePlant();
-
- //New method allowing us to pass player position
- m_Plant.RemovePlantEx( action_data.m_Player.GetPosition() );
- }
- /*Object targetObject = action_data.m_Target.GetObject();
- if ( targetObject != NULL && targetObject.IsInherited(PlantBase) )
- {
- PlantBase plant = PlantBase.Cast( targetObject );
- plant.RemovePlant();
- }*/
- }
- };
|