+- Save-Point (https://www.save-point.org)
+-- Forum: Material Development (https://www.save-point.org/forum-8.html)
+--- Forum: Scripts Database (https://www.save-point.org/forum-39.html)
+---- Forum: RPGMaker XP (RGSS) Engine (https://www.save-point.org/forum-116.html)
+---- Thread: Icon Bar (/thread-2429.html)
Icon Bar - Bearcat - 03-07-2008
Icon Bar
Version: 1.1
Introduction
This is a really simple script I wrote for my game and I thought that it might be useful for some other people. Basically, it makes a bar out of two different icons, an empty and a full one. It splits the icons into halves and makes a bar out of them (think the Zelda life bar with full, half, and empty hearts).
Screenshots
I probably should have chosen better icons, but it should be visible. See that the top one has three and a half lighter diamonds, the second has three, and the other two have none.
Demo
Hopefully the instructions are clear enough, but if not, here's a demo that will show you how to use the script in a window.
Script
Content Hidden
Code:
#==============================================================================
# ** Window_Base
#------------------------------------------------------------------------------
# This class is for all in-game windows.
#==============================================================================
class Window_Base
#--------------------------------------------------------------------------
# * Draw icon bar
# x : draw spot x-coordinate
# y : draw spot y-coordinate
# value : number of half-icons to draw filled
# max : number of half-icons to draw total
# filled : name of icon used as filled
# empty : name of icon used as empty
#-----------------------------------------------------------------------
def draw_icon_bar(x, y, value, max, filled = 'Filled', empty = 'Empty')
return if self.contents == nil
filled_icon = RPG::Cache.icon(filled)
empty_icon = RPG::Cache.icon(empty)
for i in 0...value
icon_x = (i / 2) * 32 + ((i % 2) * 12) + x
if i % 2 == 1
rectangle = Rect.new(12, 0, 12, 24)
else
rectangle = Rect.new(0, 0, 12, 24)
end
self.contents.blt(icon_x, y + 4, filled_icon, rectangle, 255)
end
for i in value...max
icon_x = (i / 2) * 32 + ((i % 2) * 12) + x
if i % 2 == 1
rectangle = Rect.new(12, 0, 12, 24)
else
rectangle = Rect.new(0, 0, 12, 24)
end
self.contents.blt(icon_x, y + 4, empty_icon, rectangle, 255)
end
end
end
Instructions
Copy and paste above main. To call it in a window, first make sure that "self.contents" is defined as a Bitmap. You shouldn't get an error if you don't, but it won't draw the bar. Then, call it with "draw_icon_bar(**arguments**<arguments>)". The arguments are:</arguments>
x (required): The x position of the icon farthest to the left.
y (required): The y position of all of the icons.
value (required): The number of half icons that are full.
max (required): The number of half icons total.
filled (optional): The name (as a string) of the "filled" icon. Defaults to "Filled".
empty (optional): The name (as a string) of the "empty" icon. Defaults to "Empty".
Two things to remember:
"value" and "max" are the number of half icons, so for 5 1/2 out of 8 icons filled, use value = 11 and max = 16.
If you don't define "filled" and "empty" when you call it, make sure that you have icons in your icon folder called "Filled" and "Empty" (case sensitive, I believe).
Compatibility
Unless you have another def in Window_Base called "draw_icon_bar," you shouldn't have problems.
Author's Notes
If anyone has good icons for this script, it would be nice if you'd post them for other people to use. I'm afraid I'm a horrible artist, and the icons in the demo/screenshot aren't mine (I actually can't remember where I got them).
Terms and Conditions
Credit's really not needed. It took me all of five minutes.