/usr/share/games/adanaxisgpl/ruby/AdanaxisDashboard.rb is in adanaxisgpl-data 1.2.5.dfsg.1-6.
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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | #%Header {
##############################################################################
#
# File data-adanaxis/ruby/AdanaxisDashboard.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 } t6tXWbJlUg+QJrGoDG/9lQ
# $Id: AdanaxisDashboard.rb,v 1.18 2007/06/27 13:18:53 southa Exp $
# $Log: AdanaxisDashboard.rb,v $
# Revision 1.18 2007/06/27 13:18:53 southa
# Debian packaging
#
# Revision 1.17 2007/06/27 12:58:10 southa
# Debian packaging
#
# Revision 1.16 2007/06/14 18:55:10 southa
# Level and display tweaks
#
# Revision 1.15 2007/04/18 20:08:39 southa
# Tweaks and fixes
#
# Revision 1.14 2007/04/18 09:21:52 southa
# Header and level fixes
#
# Revision 1.13 2007/04/16 08:41:05 southa
# Level and header mods
#
# Revision 1.12 2007/03/20 17:31:22 southa
# Difficulty and GL options
#
# Revision 1.11 2007/03/19 16:01:34 southa
# Damage indicators
#
# Revision 1.10 2007/03/13 21:45:07 southa
# Release process
#
# Revision 1.9 2007/03/09 11:29:12 southa
# Game end actions
#
# Revision 1.8 2007/03/08 21:51:01 southa
# Count display
#
# Revision 1.7 2006/12/11 13:28:19 southa
# Snapshot
#
# Revision 1.6 2006/11/21 10:08:22 southa
# Initial cut scene handling
#
# Revision 1.5 2006/11/17 20:08:34 southa
# Weapon change and ammo handling
#
# Revision 1.4 2006/11/01 13:04:20 southa
# Initial weapon handling
#
# Revision 1.3 2006/11/01 10:07:12 southa
# Shield handling
#
# Revision 1.2 2006/10/17 20:43:00 southa
# Dashboard work
#
# Revision 1.1 2006/10/17 15:27:59 southa
# Player collisions
#
require 'Mushware.rb'
require 'AdanaxisVTools.rb'
class AdanaxisDashboard < MushDashboard
@@c_weaponFonts = {
:player_base => 'basebox1-font',
:player_light_cannon => 'lightcannonbox1-font',
:player_flak => 'flakbox1-font',
:player_quad_cannon => 'quadcannonbox1-font',
:player_rail => 'railbox1-font',
:player_heavy_cannon => 'heavycannonbox1-font',
:player_light_missile => 'lightmissilebox1-font',
:player_heavy_missile => 'heavymissilebox1-font',
:player_flush => 'flushbox1-font',
:player_nuclear => 'nuclearbox1-font'
}
def initialize(inParams = {})
@m_textFont = MushGLFont.new(:name => (inParams[:font] || 'library-font1'));
@m_dashboardFont = MushGLFont.new(:name => (inParams[:dashboard_font] || 'dashboard1-font'));
@m_hitPointRatio = MushTimedValue.new(1.0)
@m_shieldRatio = MushTimedValue.new(1.0)
@m_ammoCount = MushTimedValue.new(0)
@m_redCount = MushTimedValue.new(0)
@m_blueCount = MushTimedValue.new(0)
@m_redTotal = MushTimedValue.new(0)
@m_blueTotal = MushTimedValue.new(0)
@m_isBattle = false;
@m_primary = AdanaxisSpace::PRIMARY_NONE;
@m_weaponFont = MushGLFont.new(:name => "basebox1-font")
@m_valueSize = 0.06
@m_damage = []
6.times { @m_damage << MushTimedValue.new(0.0) }
@m_damageActive = true
end
def mUpdate(inParams = {})
AdanaxisUtil.cSpellCheck(inParams)
@m_hitPointRatio.mCompareAndSet(inParams[:hit_point_ratio]) if inParams[:hit_point_ratio]
@m_shieldRatio.mCompareAndSet(inParams[:shield_ratio]) if inParams[:shield_ratio]
@m_ammoCount.mCompareAndSet(inParams[:ammo_count]) if inParams[:ammo_count]
@m_redCount.mCompareAndSet(inParams[:red_count]) if inParams[:red_count]
@m_blueCount.mCompareAndSet(inParams[:blue_count]) if inParams[:blue_count]
@m_redTotal.mCompareAndSet(inParams[:red_total]) if inParams[:red_total]
@m_blueTotal.mCompareAndSet(inParams[:blue_total]) if inParams[:blue_total]
@m_isBattle = inParams[:is_battle] if inParams[:is_battle] != nil
@m_primary = inParams[:primary] if inParams[:primary] != nil
fontName = inParams[:weapon_name]
if fontName
@m_weaponFont = MushGLFont.new(:name => @@c_weaponFonts[fontName])
end
end
def mDamageUpdate(inAmount, inIncomingVel)
iconArray = AdanaxisVTools.cApproachVectorToDamageIcons(inIncomingVel)
@m_damage.each_with_index do |damageValue, i|
value = iconArray[i] || 0.0
damageValue.mValueSet(value * inAmount)
end
@m_damageActive = true
end
def mRenderValuesBeginTopLeft
@m_valueXPos = -0.5
@m_valueXStep = 1.0
@m_valueYPos = MushGL.cViewExtent.y - @m_valueSize / 2.0
end
def mRenderValuesBeginTopRight
@m_valueXPos = 0.5
@m_valueXStep = -1.0
@m_valueYPos = MushGL.cViewExtent.y - @m_valueSize / 2.0
end
def mRenderValuesBeginBottomLeft
@m_valueXPos = -0.5
@m_valueXStep = 1.0
@m_valueYPos = - MushGL.cViewExtent.y + @m_valueSize / 2.0
end
def mRenderValuesBeginBottomRight
@m_valueXPos = 0.5
@m_valueXStep = -1.0
@m_valueYPos = - MushGL.cViewExtent.y + @m_valueSize / 2.0
end
def mRenderValueNext
@m_valueXPos += @m_valueXStep * @m_valueSize
end
def mRenderValue(inSymbol, inValue, inColour, inFont = @m_dashboardFont)
xCentre = @m_valueXPos + @m_valueXStep * @m_valueSize / 2.0
inFont.colour = inColour
inFont.mRenderSymbolAtSize(inSymbol, xCentre, @m_valueYPos, @m_valueSize);
@m_textFont.colour = MushVector.new(1,1,1,inColour.w)
valueStr = inValue.to_s
xTextCentre = xCentre - 0.01 * valueStr.length
@m_textFont.mRenderAtSize(valueStr, xTextCentre, @m_valueYPos, @m_valueSize / 3.0);
mRenderValueNext
end
def mAlphaForValue(inTimedValue)
alpha = 1.0 - (inTimedValue.mGameMsecSinceChange) / 1000.0
alpha = 0.3 if alpha < 0.3
return alpha
end
def mRender(inParams = {})
mRenderValuesBeginTopLeft
if @m_primary == AdanaxisSpace::PRIMARY_RED
alpha = mAlphaForValue(@m_redCount)
value = Integer(@m_redCount.mValue)
value = 0 if value < 0
colour = MushVector.new(1,0.3,0.3,alpha)
mRenderValue(AdanaxisFontLibrary::DASHBOARD_RED_COUNT, "P#{value}", colour)
end
alpha = mAlphaForValue(@m_redTotal)
value = Integer(@m_redTotal.mValue)
value = 0 if value < 0
colour = MushVector.new(1,0.3,0.3,alpha)
mRenderValue(AdanaxisFontLibrary::DASHBOARD_RED_COUNT, value, colour)
if @m_isBattle
if @m_primary == AdanaxisSpace::PRIMARY_BLUE
alpha = mAlphaForValue(@m_blueCount)
value = Integer(@m_blueCount.mValue)
value = 0 if value < 0
colour = MushVector.new(0.3,0.3,1,alpha)
mRenderValue(AdanaxisFontLibrary::DASHBOARD_BLUE_COUNT, "P#{value}", colour)
end
alpha = mAlphaForValue(@m_blueTotal)
value = Integer(@m_blueTotal.mValue)
value = 0 if value < 0
colour = MushVector.new(0.3,0.3,1,alpha)
mRenderValue(AdanaxisFontLibrary::DASHBOARD_BLUE_COUNT, value, colour)
end
mRenderValuesBeginBottomLeft
alpha = mAlphaForValue(@m_hitPointRatio)
value = Integer(@m_hitPointRatio.mValue * 100)
value = 0 if value < 0
colour = case value
when 0..20 : MushVector.new(1,0,0,alpha)
when 20..50 : MushVector.new(1,1,0.5,alpha)
when 50..100 : MushVector.new(0.3,0.6,1,alpha)
else MushVector.new(1,1,1,alpha)
end
mRenderValue(AdanaxisFontLibrary::DASHBOARD_HEALTH, value, colour)
alpha = mAlphaForValue(@m_shieldRatio)
value = Integer(@m_shieldRatio.mValue * 100)
value = 0 if value < 0
colour = case value
when 0 : MushVector.new(0.3,0.3,0.3,alpha)
when 1..100 : MushVector.new(1.0,1.0,0.5,alpha)
else MushVector.new(0.6,0.8,1,[alpha, 0.4].max)
end
mRenderValue(AdanaxisFontLibrary::DASHBOARD_SHIELD, value, colour)
mRenderValuesBeginBottomRight
alpha = mAlphaForValue(@m_ammoCount)
value = Integer(@m_ammoCount.mValue)
value = 0 if value < 0
colour = case value
when 0 : MushVector.new(0.3,0.3,0.3,alpha)
else MushVector.new(1,1,1,alpha)
end
mRenderValue(0, value, colour, @m_weaponFont)
mRenderDamage
end
def mDamageForValue(inTimedValue)
alpha = inTimedValue.mValue - (inTimedValue.mGameMsecSinceChange) / 2000.0
alpha = 0.0 if alpha < 0.0
return alpha
end
def mRenderDamage
if @m_damageActive
totalDamage = 0
@m_damage.each_with_index do |damageValue, i|
damage = mDamageForValue(damageValue)
totalDamage += damage
AdanaxisRuby.cDamageIconSet(i, damage)
end
@m_damageActive = false if totalDamage < 0.01
end
end
end
|