mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-30 01:21:00 +00:00
118 lines
3.8 KiB
C#
118 lines
3.8 KiB
C#
//-----------------------------------------------------------------------------
|
|
// Copyright (c) 2012 GarageGames, LLC
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to
|
|
// deal in the Software without restriction, including without limitation the
|
|
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
// sell copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
// IN THE SOFTWARE.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
function enableManualDetonation(%obj)
|
|
{
|
|
%obj.detonadeEnabled = true;
|
|
}
|
|
|
|
function doManualDetonation(%obj)
|
|
{
|
|
%nade = new Item()
|
|
{
|
|
dataBlock = Detonade;
|
|
};
|
|
MissionCleanup.add(%nade);
|
|
|
|
%nade.setTransform(%obj.getTransform());
|
|
%nade.sourceObject = %obj.sourceObject;
|
|
%nade.schedule(50, "setDamageState", "Destroyed"); // Why must we schedule?!
|
|
//%nade.setDamageState(Destroyed);
|
|
|
|
%obj.delete();
|
|
}
|
|
|
|
function Detonade::onDestroyed(%this, %object, %lastState)
|
|
{
|
|
radiusDamage(%object, %object.getPosition(), 10, 25, "DetonadeDamage", 2000);
|
|
}
|
|
|
|
function GrenadeLauncherImage::onMount(%this, %obj, %slot)
|
|
{
|
|
// Make it ready
|
|
%obj.detonadeEnabled = true;
|
|
Parent::onMount(%this, %obj, %slot);
|
|
}
|
|
|
|
function GrenadeLauncherImage::onAltFire(%this, %obj, %slot)
|
|
{
|
|
/*
|
|
//echo("\c4GrenadeLauncherImage::onFire("@ %this.getName() @", "@ %obj.client.nameBase @", "@ %slot@")");
|
|
|
|
// It's not ready yet
|
|
if(!%obj.detonadeEnabled)
|
|
return;
|
|
|
|
// If we already have one of these... blow it up!!!
|
|
if(isObject(%obj.lastProj))
|
|
{
|
|
doManualDetonation(%obj.lastProj);
|
|
if(%obj.lastNade)
|
|
{
|
|
// We remove the ammo of the last projectile fired only after it has
|
|
// been triggered, otherwise we wouldn't be able to set it off.
|
|
%obj.lastNade = "";
|
|
%obj.decInventory(%this.ammo, 1);
|
|
}
|
|
return;
|
|
}
|
|
|
|
// We fire our weapon using the straight ahead aiming point of the gun.
|
|
%muzzleVector = %obj.getMuzzleVector(%slot);
|
|
|
|
// Get the player's velocity, we'll then add it to that of the projectile
|
|
%objectVelocity = %obj.getVelocity();
|
|
%muzzleVelocity = VectorAdd(
|
|
VectorScale(%muzzleVector, %this.projectile.muzzleVelocity),
|
|
VectorScale(%objectVelocity, %this.projectile.velInheritFactor));
|
|
|
|
%p = new (%this.projectileType)()
|
|
{
|
|
dataBlock = %this.projectile;
|
|
initialVelocity = %muzzleVelocity;
|
|
initialPosition = %obj.getMuzzlePoint(%slot);
|
|
sourceObject = %obj;
|
|
sourceSlot = %slot;
|
|
client = %obj.client;
|
|
};
|
|
|
|
%obj.lastProj = %p;
|
|
MissionCleanup.add(%p);
|
|
|
|
// Decrement inventory ammo.
|
|
//%obj.decInventory(%this.ammo, 1);
|
|
|
|
// Must do some trickiness with reducing the ammo count to account for the
|
|
// very last shot. If we don't you wouldn't be able to trigger it.
|
|
%currentAmmo = %obj.getInventory(%this.ammo);
|
|
if(%currentAmmo == 1)
|
|
%obj.lastNade = 1;
|
|
else
|
|
%obj.decInventory(%this.ammo, 1);
|
|
|
|
// We don't want to detonate it in our face now do we? Give it a little time.
|
|
%obj.detonadeEnabled = false;
|
|
schedule(250, 0, "enableManualDetonation", %obj);
|
|
|
|
*/
|
|
}
|