/usr/share/games/adanaxisgpl/ruby/AdanaxisPieceItem.rb is in adanaxisgpl-data 1.2.5.dfsg.1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #%Header {
##############################################################################
#
# File data-adanaxis/ruby/AdanaxisPieceItem.rb
#
# Copyright Andy Southgate 2006-2007
#
# This file may be used and distributed under the terms of the Mushware
# Software Licence version 1.4, under the terms for 'Proprietary original
# source files'. If not supplied with this software, a copy of the licence
# can be obtained from Mushware Limited via http://www.mushware.com/.
# One of your options under that licence is to use and distribute this file
# under the terms of the GNU General Public Licence version 2.
#
# This software carries NO WARRANTY of any kind.
#
##############################################################################
#%Header } IMaIOOzsmxL/y4OnoZnJew
# $Id: AdanaxisPieceItem.rb,v 1.10 2007/06/27 13:18:54 southa Exp $
# $Log: AdanaxisPieceItem.rb,v $
# Revision 1.10 2007/06/27 13:18:54 southa
# Debian packaging
#
# Revision 1.9 2007/06/27 12:58:11 southa
# Debian packaging
#
# Revision 1.8 2007/05/29 13:25:56 southa
# Level 20
#
# Revision 1.7 2007/04/18 09:21:53 southa
# Header and level fixes
#
# Revision 1.6 2007/04/16 08:41:06 southa
# Level and header mods
#
# Revision 1.5 2007/03/13 21:45:08 southa
# Release process
#
# Revision 1.4 2006/11/01 10:07:13 southa
# Shield handling
#
# Revision 1.3 2006/10/30 19:36:38 southa
# Item collection
#
# Revision 1.2 2006/10/30 17:03:50 southa
# Remnants creation
#
# Revision 1.1 2006/10/19 15:41:35 southa
# Item handling
#
class AdanaxisPieceItem < AdanaxisPiece
extend MushRegistered
mushRegistered_install
def initialize(inParams={})
AdanaxisUtil.cSpellCheck(inParams)
@m_defaultType = "i"
super
@m_owner = inParams[:owner] || ""
@m_lifeMsec = inParams[:lifetime_msec] || 0
mDamageFactorSet(inParams[:damage_factor] || 0.0)
@m_itemType = inParams[:item_type] || raise(RuntimeError, "No item_type supplied")
@m_callInterval = 1000
end
mush_accessor :m_itemType
def mVulnerability
# Items are invulnerable for a period after creation
return (mAgeMsec < 2000) ? 0.0 : 1.0
end
def mActionTimer
mLoad
mDecoEffect
@m_callInterval
end
def mDecoEffect
$currentLogic.mEffects.mExplode(
:post => mPost,
:embers => 3,
:explosions => 0,
:flares => 0,
:lifetime_msec => 3000,
:ember_speed_range => (0.02..0.04),
:ember_scale_range => (0.1..0.3)
)
end
def mExplosionEffect
$currentLogic.mEffects.mExplode(
:post => mPost,
:embers => 20,
:explosions => 0,
:flares => 1,
:flare_scale_range => (1.7..2.0)
)
end
def mExplosionSound
end
def mFatalCollisionHandle(event)
super
mExplosionEffect
mExplosionSound
end
def mExpiryHandle(event)
mLoad
mExplosionEffect
mExplosionSound
end
end
|