Skip to content

Commit

Permalink
Got the rockmeter looking pretty nice and tests a lot of the new feat…
Browse files Browse the repository at this point in the history
…ures.
  • Loading branch information
erodozer committed Jul 10, 2010
1 parent b2a8779 commit f439b1c
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 23 deletions.
90 changes: 67 additions & 23 deletions data/themes/MegaLight V4/rockmeter.ini
@@ -1,36 +1,37 @@
[layer0:Image]
texture = hud.png
xscale = 280
yscale = 30
xpos = .5
ypos = .05
[layer0:Text]
text = "Score:"
font = loadingFont
xpos = 425
ypos = 0.15

[layer1:Text]
text = "Score: %d" % score
text = score
font = loadingFont
xpos = 400
xpos = 620
ypos = 0.15
useComma = True
alignment = right

[layer2:Text]
text = "%d Combo" % streak
font = loadingFont
xpos = 0.5
ypos = 0.70
xpos = 0.1
ypos = 0.3
alignment = center
condition = streak > 5

[layer3:Text]
text = "%dX" % multiplier
font = loadingFont
xpos = 0.6
ypos = 0.18
xpos = 400
ypos = 0.1875
alignment = right

[layer4:Text]
text = "%d Stars" % stars
font = loadingFont
xpos = 0.5
ypos = 0.85
xpos = 0.1
ypos = 0.15

[layer5:Image]
texture = dots.png
Expand All @@ -49,7 +50,7 @@ xscale = .15
yscale = .15
rect = (1.0 - (streak%10/10.0), 1, .2 + .2*(streak/10), .4 + .2*(streak/10))
alignment = right
condition = streak <= 40
condition = streak <= streakMax

[layer7:Image]
texture = dots.png
Expand All @@ -59,41 +60,84 @@ xpos = 620
ypos = .75
rect = (0, 1, .8, 1)
alignment = right
condition = streak >= 40
condition = streak >= streakMax

[layer8:Image]
texture = hud.png
xscale = 260
yscale = 20
xpos = 500
ypos = .7

[layer9:Image]
texture = bars.png
xscale = 128
yscale = 24
xpos = 380
xpos = 370
ypos = .7
rect = (0, 1, 0, .33)
alignment = left

[layer9:Image]
[layer10:Image]
texture = bars.png
xscale = 128
yscale = 24
xpos = 380
xpos = 370
ypos = .7
rect = (0, rock, .33, .67)
alignment = left

[layer10:Image]
[layer11:Image]
texture = bars.png
xscale = 128
yscale = 24
xpos = 510
xpos = 500
ypos = .7
rect = (0, 1, 0, .33)
alignment = left

[layer11:Image]
[layer12:Image]
texture = bars.png
xscale = 128
yscale = 24
xpos = 510
xpos = 500
ypos = .7
rect = (0, power, .67, 1)
alignment = left

[layer13:Image]
texture = timerbar.png
xscale = 640
yscale = 16
xpos = 0
ypos = 8
rect = (0, 1,0,.5)
alignment = left
shared = True

[layer14:Image]
texture = timerbar.png
xscale = progress
yscale = 16
xpos = 0
ypos = 8
rect = (0.0,1.0,.5,1.0)
alignment = left
shared = True

[layer15:Text]
text = "%d:%02d" % (minutes, seconds)
font = loadingFont
xpos = 50
ypos = 0.7
alignment = center
shared = True

[layer16:Text]
text = "%d:%02d" % (minutesSongLength, secondsSongLength)
font = loadingFont
xpos = 620
ypos = 0.7
alignment = right
shared = True

Binary file added data/themes/MegaLight V4/rockmeter/timerbar.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f439b1c

Please sign in to comment.