summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2021-11-25 01:55:53 +1100
committer Vas Crabb <vas@vastheman.com>2021-11-25 01:55:53 +1100
commitc378ea087097d75cd7f4fb69da062048eaaae5e6 (patch)
tree0711e315d3d2a7fc74cae27f6faea01a6af37f34
parent4e74563abb4c8b385baa72d0c2d5f3987fa88652 (diff)
A little more refactoring, and Coverity fixes:
* emu/ioport.h: Marked PORT_RESET deprecated. * emu/rendlay.cpp: Removed old dot matrix components. * emu/rendlay.cpp: Added warning message for reel components. * Changed a few more fruit machines to eliminate reel components; also made the reel lamps simpler and more efficient in these layouts. * emu, frontend: Fixed various errors reported by Coverity, one of which actaully breaks stuff.
-rw-r--r--src/emu/ioport.h2
-rw-r--r--src/emu/rendersw.hxx61
-rw-r--r--src/emu/rendlay.cpp58
-rw-r--r--src/emu/rendlay.h1
-rw-r--r--src/frontend/mame/cheat.cpp7
-rw-r--r--src/frontend/mame/luaengine_debug.cpp2
-rw-r--r--src/frontend/mame/ui/custui.cpp44
-rw-r--r--src/frontend/mame/ui/custui.h10
-rw-r--r--src/frontend/mame/ui/filesel.h5
-rw-r--r--src/frontend/mame/ui/sndmenu.cpp18
-rw-r--r--src/frontend/mame/ui/sndmenu.h2
-rw-r--r--src/frontend/mame/ui/textbox.cpp1
-rw-r--r--src/mame/layout/m1albsqp.lay494
-rw-r--r--src/mame/layout/m1apollo2.lay494
-rw-r--r--src/mame/layout/m1bargnc.lay494
-rw-r--r--src/mame/layout/sc2casr2.lay758
-rw-r--r--src/mame/layout/sc2prem2.lay853
-rw-r--r--src/tools/srcclean.cpp2
18 files changed, 695 insertions, 2611 deletions
diff --git a/src/emu/ioport.h b/src/emu/ioport.h
index 59f14b094d5..c767d44c250 100644
--- a/src/emu/ioport.h
+++ b/src/emu/ioport.h
@@ -914,6 +914,7 @@ public:
{
m_condition = condition;
m_tag = tag;
+ m_port = nullptr;
m_mask = mask;
m_value = value;
}
@@ -1488,6 +1489,7 @@ public:
ioport_configurer& field_set_toggle() { m_curfield->m_flags |= ioport_field::FIELD_FLAG_TOGGLE; return *this; }
ioport_configurer& field_set_impulse(u8 impulse) { m_curfield->m_impulse = impulse; return *this; }
ioport_configurer& field_set_analog_reverse() { m_curfield->m_flags |= ioport_field::ANALOG_FLAG_REVERSE; return *this; }
+ [[deprecated("PORT_RESET is deprecated; manage counter state explicitly")]]
ioport_configurer& field_set_analog_reset() { m_curfield->m_flags |= ioport_field::ANALOG_FLAG_RESET; return *this; }
ioport_configurer& field_set_optional() { m_curfield->m_flags |= ioport_field::FIELD_FLAG_OPTIONAL; return *this; }
ioport_configurer& field_set_min_max(ioport_value minval, ioport_value maxval) { m_curfield->m_min = minval; m_curfield->m_max = maxval; return *this; }
diff --git a/src/emu/rendersw.hxx b/src/emu/rendersw.hxx
index 840f7fa5d8a..aca64c36ace 100644
--- a/src/emu/rendersw.hxx
+++ b/src/emu/rendersw.hxx
@@ -578,47 +578,33 @@ private:
static void draw_rect(const render_primitive &prim, PixelType *dstdata, s32 width, s32 height, u32 pitch)
{
- render_bounds fpos = prim.bounds;
+ render_bounds const fpos = prim.bounds;
assert(fpos.x0 <= fpos.x1);
assert(fpos.y0 <= fpos.y1);
- // clamp to integers
- s32 startx = round_nearest(fpos.x0);
- s32 starty = round_nearest(fpos.y0);
- s32 endx = round_nearest(fpos.x1);
- s32 endy = round_nearest(fpos.y1);
-
- // ensure we fit
- if (startx < 0) startx = 0;
- if (startx >= width) startx = width;
- if (endx < 0) endx = 0;
- if (endx >= width) endx = width;
- if (starty < 0) starty = 0;
- if (starty >= height) starty = height;
- if (endy < 0) endy = 0;
- if (endy >= height) endy = height;
+ // clamp to integers and ensure we fit
+ s32 const startx = std::clamp<s32>(round_nearest(fpos.x0), 0, width);
+ s32 const starty = std::clamp<s32>(round_nearest(fpos.y0), 0, width);
+ s32 const endx = std::clamp<s32>(round_nearest(fpos.x1), 0, height);
+ s32 const endy = std::clamp<s32>(round_nearest(fpos.y1), 0, height);
// bail if nothing left
- if (fpos.x0 > fpos.x1 || fpos.y0 > fpos.y1)
+ if ((startx > endx) || (starty > endy))
return;
// only support alpha and "none" blendmodes
assert(PRIMFLAG_GET_BLENDMODE(prim.flags) == BLENDMODE_NONE ||
PRIMFLAG_GET_BLENDMODE(prim.flags) == BLENDMODE_ALPHA);
- // fast case: no alpha
- if (PRIMFLAG_GET_BLENDMODE(prim.flags) == BLENDMODE_NONE || is_opaque(prim.color.a))
+ if ((PRIMFLAG_GET_BLENDMODE(prim.flags) == BLENDMODE_NONE) || is_opaque(prim.color.a))
{
- u32 r = u32(256.0f * prim.color.r);
- u32 g = u32(256.0f * prim.color.g);
- u32 b = u32(256.0f * prim.color.b);
- u32 pix;
+ // fast case: no alpha
// clamp R,G,B to 0-256 range
- if (r > 0xff) { if (s32(r) < 0) r = 0; else r = 0xff; }
- if (g > 0xff) { if (s32(g) < 0) g = 0; else g = 0xff; }
- if (b > 0xff) { if (s32(b) < 0) b = 0; else b = 0xff; }
- pix = dest_rgb_to_pixel(r, g, b);
+ u32 r = u32(std::clamp(256.0f * prim.color.r, 0.0f, 255.0f));
+ u32 g = u32(std::clamp(256.0f * prim.color.g, 0.0f, 255.0f));
+ u32 b = u32(std::clamp(256.0f * prim.color.b, 0.0f, 255.0f));
+ u32 const pix = dest_rgb_to_pixel(r, g, b);
// loop over rows
for (s32 y = starty; y < endy; y++)
@@ -630,23 +616,18 @@ private:
*dest++ = pix;
}
}
-
- // alpha and/or coloring case
else if (!is_transparent(prim.color.a))
{
- u32 rmask = dest_rgb_to_pixel(0xff,0x00,0x00);
- u32 gmask = dest_rgb_to_pixel(0x00,0xff,0x00);
- u32 bmask = dest_rgb_to_pixel(0x00,0x00,0xff);
- u32 r = u32(256.0f * prim.color.r * prim.color.a);
- u32 g = u32(256.0f * prim.color.g * prim.color.a);
- u32 b = u32(256.0f * prim.color.b * prim.color.a);
- u32 inva = u32(256.0f * (1.0f - prim.color.a));
+ // alpha and/or coloring case
+ u32 const rmask = dest_rgb_to_pixel(0xff,0x00,0x00);
+ u32 const gmask = dest_rgb_to_pixel(0x00,0xff,0x00);
+ u32 const bmask = dest_rgb_to_pixel(0x00,0x00,0xff);
// clamp R,G,B and inverse A to 0-256 range
- if (r > 0xff) { if (s32(r) < 0) r = 0; else r = 0xff; }
- if (g > 0xff) { if (s32(g) < 0) g = 0; else g = 0xff; }
- if (b > 0xff) { if (s32(b) < 0) b = 0; else b = 0xff; }
- if (inva > 0x100) { if (s32(inva) < 0) inva = 0; else inva = 0x100; }
+ u32 r = u32(std::clamp(256.0f * prim.color.r * prim.color.a, 0.0f, 255.0f));
+ u32 g = u32(std::clamp(256.0f * prim.color.g * prim.color.a, 0.0f, 255.0f));
+ u32 b = u32(std::clamp(256.0f * prim.color.b * prim.color.a, 0.0f, 255.0f));
+ u32 const inva = u32(std::clamp(256.0f * (1.0f - prim.color.a), 0.0f, 256.0f));
// pre-shift the RGBA pieces
r = dest_rgb_to_pixel(r, 0, 0) << 8;
diff --git a/src/emu/rendlay.cpp b/src/emu/rendlay.cpp
index 41075c2573b..28011b8372c 100644
--- a/src/emu/rendlay.cpp
+++ b/src/emu/rendlay.cpp
@@ -1246,9 +1246,6 @@ int get_blend_mode(emu::render::detail::view_environment &env, util::xml::data_n
layout_element::make_component_map const layout_element::s_make_component{
{ "image", &make_component<image_component> },
{ "text", &make_component<text_component> },
- { "dotmatrix", &make_dotmatrix_component<8> },
- { "dotmatrix5dot", &make_dotmatrix_component<5> },
- { "dotmatrixdot", &make_dotmatrix_component<1> },
{ "simplecounter", &make_component<simplecounter_component> },
{ "reel", &make_component<reel_component> },
{ "led7seg", &make_component<led7seg_component> },
@@ -3079,47 +3076,6 @@ protected:
};
-// row of dots for a dotmatrix
-class layout_element::dotmatrix_component : public component
-{
-public:
- // construction/destruction
- dotmatrix_component(int dots, environment &env, util::xml::data_node const &compnode)
- : component(env, compnode)
- , m_dots(dots)
- {
- }
-
-protected:
- // overrides
- virtual int maxstate() const override { return (1 << m_dots) - 1; }
-
- virtual void draw_aligned(running_machine &machine, bitmap_argb32 &dest, const rectangle &bounds, int state) override
- {
- const rgb_t onpen = rgb_t(0xff, 0xff, 0xff, 0xff);
- const rgb_t offpen = rgb_t(0xff, 0x20, 0x20, 0x20);
-
- // sizes for computation
- int bmheight = 300;
- int dotwidth = 250;
-
- // allocate a temporary bitmap for drawing
- bitmap_argb32 tempbitmap(dotwidth*m_dots, bmheight);
- tempbitmap.fill(rgb_t(0xff, 0x00, 0x00, 0x00));
-
- for (int i = 0; i < m_dots; i++)
- draw_segment_decimal(tempbitmap, ((dotwidth / 2) + (i * dotwidth)), bmheight / 2, dotwidth, BIT(state, i) ? onpen : offpen);
-
- // resample to the target size
- render_resample_argb_bitmap_hq(dest, tempbitmap, color(state));
- }
-
-private:
- // internal state
- int m_dots;
-};
-
-
// simple counter
class layout_element::simplecounter_component : public component
{
@@ -3163,6 +3119,8 @@ public:
, m_searchpath(env.search_path() ? env.search_path() : "")
, m_dirname(env.directory_name() ? env.directory_name() : "")
{
+ osd_printf_warning("Warning: layout file contains deprecated reel component\n");
+
std::string_view symbollist = env.get_attribute_string(compnode, "symbollist", "0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15");
// split out position names from string and figure out our number of symbols
@@ -3558,18 +3516,6 @@ layout_element::component::ptr layout_element::make_component(environment &env,
}
-//-------------------------------------------------
-// make_component - create dotmatrix component
-// with given vertical resolution
-//-------------------------------------------------
-
-template <int D>
-layout_element::component::ptr layout_element::make_dotmatrix_component(environment &env, util::xml::data_node const &compnode)
-{
- return std::make_unique<dotmatrix_component>(D, env, compnode);
-}
-
-
//**************************************************************************
// LAYOUT ELEMENT TEXTURE
diff --git a/src/emu/rendlay.h b/src/emu/rendlay.h
index befae560bcd..da9edfcf752 100644
--- a/src/emu/rendlay.h
+++ b/src/emu/rendlay.h
@@ -146,7 +146,6 @@ private:
class led16seg_component;
class led14segsc_component;
class led16segsc_component;
- class dotmatrix_component;
class simplecounter_component;
class reel_component;
diff --git a/src/frontend/mame/cheat.cpp b/src/frontend/mame/cheat.cpp
index 2946d2c2257..dbbd0ed78bc 100644
--- a/src/frontend/mame/cheat.cpp
+++ b/src/frontend/mame/cheat.cpp
@@ -418,6 +418,10 @@ cheat_script::script_entry::script_entry(
if (!expression || !expression[0])
throw emu_fatalerror("%s.xml(%d): missing expression in action tag\n", filename, entrynode.line);
m_expression.parse(expression);
+
+ // initialise these to defautlt values
+ m_line = 0;
+ m_justify = ui::text_layout::text_justify::LEFT;
}
else
{
@@ -1056,6 +1060,9 @@ constexpr int cheat_manager::CHEAT_VERSION;
cheat_manager::cheat_manager(running_machine &machine)
: m_machine(machine)
+ , m_framecount(0)
+ , m_numlines(0)
+ , m_lastline(0)
, m_disabled(true)
, m_symtable(machine)
{
diff --git a/src/frontend/mame/luaengine_debug.cpp b/src/frontend/mame/luaengine_debug.cpp
index e3817d95ced..8349cbd88fc 100644
--- a/src/frontend/mame/luaengine_debug.cpp
+++ b/src/frontend/mame/luaengine_debug.cpp
@@ -100,7 +100,7 @@ void lua_engine::initialize_debug(sol::table &emu)
debugger_type["consolelog"] = sol::property([] (debugger_manager &debug) { return wrap_textbuf(debug.console().get_console_textbuf()); });
debugger_type["errorlog"] = sol::property([](debugger_manager &debug) { return wrap_textbuf(debug.console().get_errorlog_textbuf()); });
debugger_type["visible_cpu"] = sol::property(
- [](debugger_manager &debug) { debug.console().get_visible_cpu(); },
+ [](debugger_manager &debug) { return debug.console().get_visible_cpu(); },
[](debugger_manager &debug, device_t &dev) { debug.console().set_visible_cpu(&dev); });
debugger_type["execution_state"] = sol::property(
[] (debugger_manager &debug) { return debug.cpu().is_stopped() ? "stop" : "run"; },
diff --git a/src/frontend/mame/ui/custui.cpp b/src/frontend/mame/ui/custui.cpp
index 62396d7840b..02da9310207 100644
--- a/src/frontend/mame/ui/custui.cpp
+++ b/src/frontend/mame/ui/custui.cpp
@@ -83,10 +83,10 @@ menu_custom_ui::menu_custom_ui(mame_ui_manager &mui, render_container &container
}
//-------------------------------------------------
-// dtor
+// menu dismissed
//-------------------------------------------------
-menu_custom_ui::~menu_custom_ui()
+void menu_custom_ui::menu_dismissed()
{
ui().options().set_value(OPTION_HIDE_PANELS, ui_globals::panels_status, OPTION_PRIORITY_CMDLINE);
@@ -375,10 +375,10 @@ void menu_font_ui::list()
}
//-------------------------------------------------
-// dtor
+// menu dismissed
//-------------------------------------------------
-menu_font_ui::~menu_font_ui()
+void menu_font_ui::menu_dismissed()
{
if (m_changed)
{
@@ -580,10 +580,10 @@ menu_colors_ui::menu_colors_ui(mame_ui_manager &mui, render_container &container
}
//-------------------------------------------------
-// dtor
+// menu dismissed
//-------------------------------------------------
-menu_colors_ui::~menu_colors_ui()
+void menu_colors_ui::menu_dismissed()
{
std::string dec_color;
for (int index = 1; index < MUI_RESTORE; index++)
@@ -607,7 +607,7 @@ void menu_colors_ui::handle(event const *ev)
{
if ((uintptr_t)ev->itemref != MUI_RESTORE)
{
- menu::stack_push<menu_rgb_ui>(ui(), container(), &m_color_table[(uintptr_t)ev->itemref].color, selected_item().text());
+ menu::stack_push<menu_rgb_ui>(ui(), container(), &m_color_table[(uintptr_t)ev->itemref].color, std::string(selected_item().text()));
}
else
{
@@ -803,26 +803,18 @@ void menu_colors_ui::restore_colors()
// ctor
//-------------------------------------------------
-menu_rgb_ui::menu_rgb_ui(mame_ui_manager &mui, render_container &container, rgb_t *_color, std::string _title)
- : menu(mui, container),
- m_color(_color),
- m_search(),
- m_key_active(false),
- m_lock_ref(0),
- m_title(_title)
+menu_rgb_ui::menu_rgb_ui(mame_ui_manager &mui, render_container &container, rgb_t *color, std::string &&title)
+ : menu(mui, container)
+ , m_color(color)
+ , m_search()
+ , m_key_active(false)
+ , m_lock_ref(0)
+ , m_title(std::move(title))
{
set_process_flags(PROCESS_LR_REPEAT);
}
//-------------------------------------------------
-// dtor
-//-------------------------------------------------
-
-menu_rgb_ui::~menu_rgb_ui()
-{
-}
-
-//-------------------------------------------------
// handle
//-------------------------------------------------
@@ -1112,14 +1104,6 @@ menu_palette_sel::menu_palette_sel(mame_ui_manager &mui, render_container &conta
}
//-------------------------------------------------
-// dtor
-//-------------------------------------------------
-
-menu_palette_sel::~menu_palette_sel()
-{
-}
-
-//-------------------------------------------------
// handle
//-------------------------------------------------
diff --git a/src/frontend/mame/ui/custui.h b/src/frontend/mame/ui/custui.h
index 34d417c8774..168934b5356 100644
--- a/src/frontend/mame/ui/custui.h
+++ b/src/frontend/mame/ui/custui.h
@@ -28,10 +28,10 @@ class menu_custom_ui : public menu
{
public:
menu_custom_ui(mame_ui_manager &mui, render_container &container, std::function<void ()> &&handler);
- virtual ~menu_custom_ui() override;
protected:
virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2) override;
+ virtual void menu_dismissed() override;
private:
virtual void populate(float &customtop, float &custombottom) override;
@@ -55,10 +55,10 @@ class menu_font_ui : public menu
{
public:
menu_font_ui(mame_ui_manager &mui, render_container &container, std::function<void (bool)> &&handler);
- virtual ~menu_font_ui() override;
protected:
virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2) override;
+ virtual void menu_dismissed() override;
private:
virtual void populate(float &customtop, float &custombottom) override;
@@ -89,10 +89,10 @@ class menu_colors_ui : public menu
{
public:
menu_colors_ui(mame_ui_manager &mui, render_container &container);
- virtual ~menu_colors_ui() override;
protected:
virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2) override;
+ virtual void menu_dismissed() override;
private:
enum
@@ -136,8 +136,7 @@ private:
class menu_rgb_ui : public menu
{
public:
- menu_rgb_ui(mame_ui_manager &mui, render_container &container, rgb_t *_color, std::string _title);
- virtual ~menu_rgb_ui() override;
+ menu_rgb_ui(mame_ui_manager &mui, render_container &container, rgb_t *color, std::string &&title);
protected:
virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2) override;
@@ -172,7 +171,6 @@ class menu_palette_sel : public menu
{
public:
menu_palette_sel(mame_ui_manager &mui, render_container &container, rgb_t &_color);
- virtual ~menu_palette_sel() override;
private:
virtual void populate(float &customtop, float &custombottom) override;
diff --git a/src/frontend/mame/ui/filesel.h b/src/frontend/mame/ui/filesel.h
index 9f7eea7dbea..11e5643c2de 100644
--- a/src/frontend/mame/ui/filesel.h
+++ b/src/frontend/mame/ui/filesel.h
@@ -61,10 +61,11 @@ private:
struct file_selector_entry
{
- file_selector_entry() { }
+ file_selector_entry() = default;
file_selector_entry(file_selector_entry &&) = default;
file_selector_entry &operator=(file_selector_entry &&) = default;
- file_selector_entry_type type;
+
+ file_selector_entry_type type = SELECTOR_ENTRY_TYPE_EMPTY;
std::string basename;
std::string fullpath;
};
diff --git a/src/frontend/mame/ui/sndmenu.cpp b/src/frontend/mame/ui/sndmenu.cpp
index b1842969f8f..1ee1e82e25c 100644
--- a/src/frontend/mame/ui/sndmenu.cpp
+++ b/src/frontend/mame/ui/sndmenu.cpp
@@ -45,29 +45,25 @@ menu_sound_options::menu_sound_options(mame_ui_manager &mui, render_container &c
}
//-------------------------------------------------
-// dtor
+// menu_dismissed
//-------------------------------------------------
-menu_sound_options::~menu_sound_options()
+void menu_sound_options::menu_dismissed()
{
emu_options &moptions = machine().options();
- if (strcmp(moptions.value(OSDOPTION_SOUND), m_sound ? OSDOPTVAL_AUTO : OSDOPTVAL_NONE) != 0)
- {
+ if (strcmp(moptions.value(OSDOPTION_SOUND), m_sound ? OSDOPTVAL_AUTO : OSDOPTVAL_NONE))
moptions.set_value(OSDOPTION_SOUND, m_sound ? OSDOPTVAL_AUTO : OSDOPTVAL_NONE, OPTION_PRIORITY_CMDLINE);
- }
+
if (moptions.bool_value(OPTION_COMPRESSOR) != m_compressor)
- {
moptions.set_value(OPTION_COMPRESSOR, m_compressor, OPTION_PRIORITY_CMDLINE);
- }
+
if (moptions.int_value(OPTION_SAMPLERATE) != m_sound_rate[m_cur_rates])
- {
moptions.set_value(OPTION_SAMPLERATE, m_sound_rate[m_cur_rates], OPTION_PRIORITY_CMDLINE);
- }
+
if (moptions.bool_value(OPTION_SAMPLES) != m_samples)
- {
moptions.set_value(OPTION_SAMPLES, m_samples, OPTION_PRIORITY_CMDLINE);
- }
+
}
//-------------------------------------------------
diff --git a/src/frontend/mame/ui/sndmenu.h b/src/frontend/mame/ui/sndmenu.h
index 35ac73981df..03f68202748 100644
--- a/src/frontend/mame/ui/sndmenu.h
+++ b/src/frontend/mame/ui/sndmenu.h
@@ -25,10 +25,10 @@ class menu_sound_options : public menu
{
public:
menu_sound_options(mame_ui_manager &mui, render_container &container);
- virtual ~menu_sound_options() override;
protected:
virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2) override;
+ virtual void menu_dismissed() override;
private:
enum
diff --git a/src/frontend/mame/ui/textbox.cpp b/src/frontend/mame/ui/textbox.cpp
index 71de239b35f..cd529aa297d 100644
--- a/src/frontend/mame/ui/textbox.cpp
+++ b/src/frontend/mame/ui/textbox.cpp
@@ -29,6 +29,7 @@ menu_textbox::menu_textbox(mame_ui_manager &mui, render_container &container)
, m_layout_width(-1.0f)
, m_desired_width(-1.0f)
, m_desired_lines(-1)
+ , m_window_lines(0)
, m_top_line(0)
{
}
diff --git a/src/mame/layout/m1albsqp.lay b/src/mame/layout/m1albsqp.lay
index e11e3c57055..a83f332bedc 100644
--- a/src/mame/layout/m1albsqp.lay
+++ b/src/mame/layout/m1albsqp.lay
@@ -1664,25 +1664,77 @@
<color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
- <element name="reel0" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel1" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel2" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel3" defstate="0">
- <reel reelreversed="1" stateoffset="-1365" numsymbolsvisible="1" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
+ <element name="reel0">
+ <rect> <bounds x="0" y="0" width="80" height="736"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="54" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="100" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="146" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="192" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="238" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="284" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="330" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="376" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="422" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="468" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="514" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="560" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="606" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="652" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="698" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel1">
+ <rect> <bounds x="0" y="0" width="80" height="736"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="54" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="100" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="146" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="192" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="238" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="284" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="330" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="376" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="422" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="468" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="514" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="560" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="606" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="652" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="698" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel2">
+ <rect> <bounds x="0" y="0" width="80" height="736"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="54" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="100" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="146" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="192" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="238" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="284" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="330" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="376" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="422" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="468" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="514" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="560" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="606" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="652" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="698" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel3">
+ <rect> <bounds x="0" y="0" width="80" height="672"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="64" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="120" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="176" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="232" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="288" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="344" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="400" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="456" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="512" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="568" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="624" width="72" height="40"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
</element>
<element name="led_background">
<rect>
@@ -1754,38 +1806,14 @@
<color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
- <element name="reel_lamp_layer_0" defstate="0">
- <rect>
- <color red="0.40" green="0.40" blue="0.40"/>
- </rect>
- <disk state="1">
- <color red="0.50" green="0.50" blue="0.50"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_1" defstate="0">
- <disk state="1">
- <color red="0.60" green="0.60" blue="0.60"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_2" defstate="0">
- <disk state="1">
- <color red="0.70" green="0.70" blue="0.70"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_3" defstate="0">
- <disk state="1">
- <color red="0.80" green="0.80" blue="0.80"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_4" defstate="0">
- <disk state="1">
- <color red="0.90" green="0.90" blue="0.90"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_5" defstate="0">
- <disk state="1">
- <color red="1.00" green="1.00" blue="1.00"/>
- </disk>
+ <element name="reel_lamp" defstate="0">
+ <rect> <color red="0.40" green="0.40" blue="0.40"/> </rect>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="1.0" height="1.0"/> <color red="0.50" green="0.50" blue="0.50"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.916667" height="0.916667"/> <color red="0.60" green="0.60" blue="0.60"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.833333" height="0.833333"/> <color red="0.70" green="0.70" blue="0.70"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.75" height="0.75"/> <color red="0.80" green="0.80" blue="0.80"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.666667" height="0.666667"/> <color red="0.90" green="0.90" blue="0.90"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_9">
<text string="nudge pot">
@@ -3834,206 +3862,60 @@
<element ref="reel_background">
<bounds x="223" y="463" width="80" height="140"/>
</element>
- <element name="lamp10" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp10" ref="reel_lamp" state="0">
<bounds x="223.0000" y="463.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="226.3333" y="464.9445" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="229.6667" y="466.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="233.0000" y="468.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="236.3333" y="470.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="239.6667" y="472.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp11" ref="reel_lamp" state="0">
<bounds x="223.0000" y="509.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp11" ref="reel_lamp_layer_1" state="0">
- <bounds x="226.3333" y="511.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_2" state="0">
- <bounds x="229.6667" y="513.5555" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_3" state="0">
- <bounds x="233.0000" y="515.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_4" state="0">
- <bounds x="236.3333" y="517.4445" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_5" state="0">
- <bounds x="239.6667" y="519.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp12" ref="reel_lamp" state="0">
<bounds x="223.0000" y="556.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp12" ref="reel_lamp_layer_1" state="0">
- <bounds x="226.3333" y="558.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_2" state="0">
- <bounds x="229.6667" y="560.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_3" state="0">
- <bounds x="233.0000" y="562.1666" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_4" state="0">
- <bounds x="236.3333" y="564.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_5" state="0">
- <bounds x="239.6667" y="566.0555" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel1" ref="reel0" state="0">
+ <element ref="reel0">
<bounds x="223" y="463" width="80" height="140"/>
+ <yscroll name="sreel1" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="305" y="463" width="80" height="140"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp13" ref="reel_lamp" state="0">
<bounds x="305.0000" y="463.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_1" state="0">
- <bounds x="308.3333" y="464.9445" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_2" state="0">
- <bounds x="311.6667" y="466.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_3" state="0">
- <bounds x="315.0000" y="468.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_4" state="0">
- <bounds x="318.3333" y="470.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_5" state="0">
- <bounds x="321.6667" y="472.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp14" ref="reel_lamp" state="0">
<bounds x="305.0000" y="509.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp14" ref="reel_lamp_layer_1" state="0">
- <bounds x="308.3333" y="511.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_2" state="0">
- <bounds x="311.6667" y="513.5555" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_3" state="0">
- <bounds x="315.0000" y="515.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_4" state="0">
- <bounds x="318.3333" y="517.4445" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_5" state="0">
- <bounds x="321.6667" y="519.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp15" ref="reel_lamp" state="0">
<bounds x="305.0000" y="556.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp15" ref="reel_lamp_layer_1" state="0">
- <bounds x="308.3333" y="558.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_2" state="0">
- <bounds x="311.6667" y="560.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_3" state="0">
- <bounds x="315.0000" y="562.1666" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_4" state="0">
- <bounds x="318.3333" y="564.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_5" state="0">
- <bounds x="321.6667" y="566.0555" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel2" ref="reel1" state="0">
+ <element ref="reel1">
<bounds x="305" y="463" width="80" height="140"/>
+ <yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="387" y="463" width="80" height="140"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp16" ref="reel_lamp" state="0">
<bounds x="387.0000" y="463.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="390.3333" y="464.9445" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="393.6667" y="466.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="397.0000" y="468.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="400.3333" y="470.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="403.6667" y="472.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp17" ref="reel_lamp" state="0">
<bounds x="387.0000" y="509.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="390.3333" y="511.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="393.6667" y="513.5555" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="397.0000" y="515.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="400.3333" y="517.4445" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="403.6667" y="519.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp18" ref="reel_lamp" state="0">
<bounds x="387.0000" y="556.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="390.3333" y="558.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="393.6667" y="560.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="397.0000" y="562.1666" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="400.3333" y="564.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="403.6667" y="566.0555" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel3" ref="reel2" state="0">
+ <element ref="reel2">
<bounds x="387" y="463" width="80" height="140"/>
+ <yscroll name="sreel3" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="166" y="368" width="80" height="56"/>
</element>
- <element name="lamp20" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp20" ref="reel_lamp" state="0">
<bounds x="166.0000" y="368.0000" width="80.0000" height="56.0000"/>
</element>
- <element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="169.3333" y="370.3333" width="73.3333" height="51.3333"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="172.6667" y="372.6667" width="66.6667" height="46.6667"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="176.0000" y="375.0000" width="60.0000" height="42.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="179.3333" y="377.3333" width="53.3333" height="37.3333"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="182.6667" y="379.6667" width="46.6667" height="32.6667"/>
- </element>
- <element name="sreel4" ref="reel3" state="0">
+ <element ref="reel3">
<bounds x="166" y="368" width="80" height="56"/>
+ <yscroll name="sreel4" size="0.0833333" wrap="yes" min="66901" max="1366"/>
</element>
<element name="lamp136" ref="lamp_136_1_border" state="0">
<bounds x="40" y="311" width="62" height="32"/>
@@ -6969,206 +6851,60 @@
<element ref="reel_background">
<bounds x="1100" y="32" width="120" height="240"/>
</element>
- <element name="lamp10" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp10" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp11" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp11" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp12" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp12" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel1" ref="reel0" state="0">
+ <element ref="reel0">
<bounds x="1100" y="32" width="120" height="240"/>
+ <yscroll name="sreel1" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1240" y="32" width="120" height="240"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp13" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp14" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp14" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp15" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp15" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel2" ref="reel1" state="0">
+ <element ref="reel1">
<bounds x="1240" y="32" width="120" height="240"/>
+ <yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1380" y="32" width="120" height="240"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp16" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp17" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp18" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel3" ref="reel2" state="0">
+ <element ref="reel2">
<bounds x="1380" y="32" width="120" height="240"/>
+ <yscroll name="sreel3" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1520" y="32" width="120" height="240"/>
</element>
- <element name="lamp20" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp20" ref="reel_lamp" state="0">
<bounds x="1520.0000" y="32.0000" width="120.0000" height="240.0000"/>
</element>
- <element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="1525.0000" y="42.0000" width="110.0000" height="220.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="1530.0000" y="52.0000" width="100.0000" height="200.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="1535.0000" y="62.0000" width="90.0000" height="180.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="1540.0000" y="72.0000" width="80.0000" height="160.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="1545.0000" y="82.0000" width="70.0000" height="140.0000"/>
- </element>
- <element name="sreel4" ref="reel3" state="0">
+ <element ref="reel3">
<bounds x="1520" y="32" width="120" height="240"/>
+ <yscroll name="sreel4" size="0.0833333" wrap="yes" min="66901" max="1366"/>
</element>
<element name="reel1" ref="debug_stepper_value">
<bounds x="1100" y="272" width="50" height="30"/>
diff --git a/src/mame/layout/m1apollo2.lay b/src/mame/layout/m1apollo2.lay
index 6993cd7abe5..6609cd71975 100644
--- a/src/mame/layout/m1apollo2.lay
+++ b/src/mame/layout/m1apollo2.lay
@@ -3352,25 +3352,77 @@
<color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
- <element name="reel0" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel1" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel2" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel3" defstate="0">
- <reel reelreversed="1" stateoffset="-1365" numsymbolsvisible="1" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
+ <element name="reel0">
+ <rect> <bounds x="0" y="0" width="80" height="736"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="54" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="100" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="146" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="192" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="238" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="284" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="330" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="376" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="422" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="468" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="514" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="560" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="606" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="652" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="698" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel1">
+ <rect> <bounds x="0" y="0" width="80" height="736"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="54" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="100" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="146" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="192" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="238" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="284" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="330" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="376" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="422" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="468" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="514" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="560" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="606" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="652" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="698" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel2">
+ <rect> <bounds x="0" y="0" width="80" height="736"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="54" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="100" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="146" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="192" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="238" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="284" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="330" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="376" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="422" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="468" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="514" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="560" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="606" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="652" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="698" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel3">
+ <rect> <bounds x="0" y="0" width="80" height="960"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="88" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="168" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="248" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="328" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="408" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="488" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="568" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="648" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="728" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="808" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="888" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
</element>
<element name="led_background">
<rect>
@@ -3442,38 +3494,14 @@
<color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
- <element name="reel_lamp_layer_0" defstate="0">
- <rect>
- <color red="0.40" green="0.40" blue="0.40"/>
- </rect>
- <disk state="1">
- <color red="0.50" green="0.50" blue="0.50"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_1" defstate="0">
- <disk state="1">
- <color red="0.60" green="0.60" blue="0.60"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_2" defstate="0">
- <disk state="1">
- <color red="0.70" green="0.70" blue="0.70"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_3" defstate="0">
- <disk state="1">
- <color red="0.80" green="0.80" blue="0.80"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_4" defstate="0">
- <disk state="1">
- <color red="0.90" green="0.90" blue="0.90"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_5" defstate="0">
- <disk state="1">
- <color red="1.00" green="1.00" blue="1.00"/>
- </disk>
+ <element name="reel_lamp" defstate="0">
+ <rect> <color red="0.40" green="0.40" blue="0.40"/> </rect>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="1.0" height="1.0"/> <color red="0.50" green="0.50" blue="0.50"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.916667" height="0.916667"/> <color red="0.60" green="0.60" blue="0.60"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.833333" height="0.833333"/> <color red="0.70" green="0.70" blue="0.70"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.75" height="0.75"/> <color red="0.80" green="0.80" blue="0.80"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.666667" height="0.666667"/> <color red="0.90" green="0.90" blue="0.90"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="debug_backdrop_colour">
<rect>
@@ -5494,206 +5522,60 @@
<element ref="reel_background">
<bounds x="113" y="486" width="80" height="140"/>
</element>
- <element name="lamp10" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp10" ref="reel_lamp" state="0">
<bounds x="113.0000" y="486.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="116.3333" y="487.9445" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="119.6667" y="489.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="123.0000" y="491.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="126.3333" y="493.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="129.6667" y="495.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp11" ref="reel_lamp" state="0">
<bounds x="113.0000" y="532.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp11" ref="reel_lamp_layer_1" state="0">
- <bounds x="116.3333" y="534.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_2" state="0">
- <bounds x="119.6667" y="536.5556" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_3" state="0">
- <bounds x="123.0000" y="538.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_4" state="0">
- <bounds x="126.3333" y="540.4445" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_5" state="0">
- <bounds x="129.6667" y="542.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp12" ref="reel_lamp" state="0">
<bounds x="113.0000" y="579.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp12" ref="reel_lamp_layer_1" state="0">
- <bounds x="116.3333" y="581.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_2" state="0">
- <bounds x="119.6667" y="583.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_3" state="0">
- <bounds x="123.0000" y="585.1666" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_4" state="0">
- <bounds x="126.3333" y="587.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_5" state="0">
- <bounds x="129.6667" y="589.0555" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel1" ref="reel0" state="0">
+ <element ref="reel0">
<bounds x="113" y="486" width="80" height="140"/>
+ <yscroll name="sreel1" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="205" y="486" width="80" height="140"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp13" ref="reel_lamp" state="0">
<bounds x="205.0000" y="486.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_1" state="0">
- <bounds x="208.3333" y="487.9445" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_2" state="0">
- <bounds x="211.6667" y="489.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_3" state="0">
- <bounds x="215.0000" y="491.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_4" state="0">
- <bounds x="218.3333" y="493.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_5" state="0">
- <bounds x="221.6667" y="495.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp14" ref="reel_lamp" state="0">
<bounds x="205.0000" y="532.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp14" ref="reel_lamp_layer_1" state="0">
- <bounds x="208.3333" y="534.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_2" state="0">
- <bounds x="211.6667" y="536.5556" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_3" state="0">
- <bounds x="215.0000" y="538.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_4" state="0">
- <bounds x="218.3333" y="540.4445" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_5" state="0">
- <bounds x="221.6667" y="542.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp15" ref="reel_lamp" state="0">
<bounds x="205.0000" y="579.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp15" ref="reel_lamp_layer_1" state="0">
- <bounds x="208.3333" y="581.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_2" state="0">
- <bounds x="211.6667" y="583.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_3" state="0">
- <bounds x="215.0000" y="585.1666" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_4" state="0">
- <bounds x="218.3333" y="587.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_5" state="0">
- <bounds x="221.6667" y="589.0555" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel2" ref="reel1" state="0">
+ <element ref="reel1">
<bounds x="205" y="486" width="80" height="140"/>
+ <yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="297" y="486" width="80" height="140"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp16" ref="reel_lamp" state="0">
<bounds x="297.0000" y="486.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="300.3333" y="487.9445" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="303.6667" y="489.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="307.0000" y="491.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="310.3333" y="493.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="313.6667" y="495.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp17" ref="reel_lamp" state="0">
<bounds x="297.0000" y="532.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="300.3333" y="534.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="303.6667" y="536.5556" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="307.0000" y="538.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="310.3333" y="540.4445" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="313.6667" y="542.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp18" ref="reel_lamp" state="0">
<bounds x="297.0000" y="579.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="300.3333" y="581.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="303.6667" y="583.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="307.0000" y="585.1666" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="310.3333" y="587.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="313.6667" y="589.0555" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel3" ref="reel2" state="0">
+ <element ref="reel2">
<bounds x="297" y="486" width="80" height="140"/>
+ <yscroll name="sreel3" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="816" y="24" width="80" height="80"/>
</element>
- <element name="lamp20" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp20" ref="reel_lamp" state="0">
<bounds x="816.0000" y="24.0000" width="80.0000" height="80.0000"/>
</element>
- <element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="819.3333" y="27.3333" width="73.3333" height="73.3333"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="822.6667" y="30.6667" width="66.6667" height="66.6667"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="826.0000" y="34.0000" width="60.0000" height="60.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="829.3333" y="37.3333" width="53.3333" height="53.3333"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="832.6667" y="40.6667" width="46.6667" height="46.6667"/>
- </element>
- <element name="sreel4" ref="reel3" state="0">
+ <element ref="reel3">
<bounds x="816" y="24" width="80" height="80"/>
+ <yscroll name="sreel4" size="0.0833333" wrap="yes" min="66901" max="1366"/>
</element>
<element name="lamp143" ref="lamp_143_1_border" state="0">
<bounds x="139" y="43" width="42" height="42"/>
@@ -8848,206 +8730,60 @@
<element ref="reel_background">
<bounds x="1100" y="32" width="120" height="240"/>
</element>
- <element name="lamp10" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp10" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp10" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp10" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp11" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp11" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp12" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp12" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp12" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel1" ref="reel0" state="0">
+ <element ref="reel0">
<bounds x="1100" y="32" width="120" height="240"/>
+ <yscroll name="sreel1" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1240" y="32" width="120" height="240"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp13" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp14" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp14" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp15" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp15" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel2" ref="reel1" state="0">
+ <element ref="reel1">
<bounds x="1240" y="32" width="120" height="240"/>
+ <yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1380" y="32" width="120" height="240"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp16" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp17" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp18" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel3" ref="reel2" state="0">
+ <element ref="reel2">
<bounds x="1380" y="32" width="120" height="240"/>
+ <yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1520" y="32" width="120" height="240"/>
</element>
- <element name="lamp20" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp20" ref="reel_lamp" state="0">
<bounds x="1520.0000" y="32.0000" width="120.0000" height="240.0000"/>
</element>
- <element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="1525.0000" y="42.0000" width="110.0000" height="220.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="1530.0000" y="52.0000" width="100.0000" height="200.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="1535.0000" y="62.0000" width="90.0000" height="180.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="1540.0000" y="72.0000" width="80.0000" height="160.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="1545.0000" y="82.0000" width="70.0000" height="140.0000"/>
- </element>
- <element name="sreel4" ref="reel3" state="0">
+ <element ref="reel3">
<bounds x="1520" y="32" width="120" height="240"/>
+ <yscroll name="sreel4" size="0.0833333" wrap="yes" min="66901" max="1366"/>
</element>
<element name="reel1" ref="debug_stepper_value">
<bounds x="1100" y="272" width="50" height="30"/>
diff --git a/src/mame/layout/m1bargnc.lay b/src/mame/layout/m1bargnc.lay
index 483b9945eb5..32ac62fe8e5 100644
--- a/src/mame/layout/m1bargnc.lay
+++ b/src/mame/layout/m1bargnc.lay
@@ -1456,25 +1456,77 @@
<color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
- <element name="reel0" defstate="0">
- <reel reelreversed="1" stateoffset="-1365" numsymbolsvisible="1" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel1" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel2" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel3" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
+ <element name="reel0">
+ <rect> <bounds x="0" y="0" width="70" height="840"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="78" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="148" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="218" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="288" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="358" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="428" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="498" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="568" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="638" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="708" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="778" width="54" height="54"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel1">
+ <rect> <bounds x="0" y="0" width="70" height="800"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="58" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="108" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="158" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="208" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="258" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="308" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="358" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="408" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="458" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="508" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="558" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="608" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="658" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="708" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="758" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel2">
+ <rect> <bounds x="0" y="0" width="70" height="800"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="58" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="108" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="158" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="208" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="258" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="308" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="358" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="408" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="458" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="508" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="558" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="608" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="658" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="708" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="758" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel3">
+ <rect> <bounds x="0" y="0" width="70" height="800"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="58" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="108" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="158" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="208" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="258" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="308" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="358" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="408" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="458" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="508" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="558" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="608" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="658" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="708" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="758" width="54" height="34"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
</element>
<element name="led_background">
<rect>
@@ -1546,38 +1598,14 @@
<color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
- <element name="reel_lamp_layer_0" defstate="0">
- <rect>
- <color red="0.40" green="0.40" blue="0.40"/>
- </rect>
- <disk state="1">
- <color red="0.50" green="0.50" blue="0.50"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_1" defstate="0">
- <disk state="1">
- <color red="0.60" green="0.60" blue="0.60"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_2" defstate="0">
- <disk state="1">
- <color red="0.70" green="0.70" blue="0.70"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_3" defstate="0">
- <disk state="1">
- <color red="0.80" green="0.80" blue="0.80"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_4" defstate="0">
- <disk state="1">
- <color red="0.90" green="0.90" blue="0.90"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_5" defstate="0">
- <disk state="1">
- <color red="1.00" green="1.00" blue="1.00"/>
- </disk>
+ <element name="reel_lamp" defstate="0">
+ <rect> <color red="0.40" green="0.40" blue="0.40"/> </rect>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="1.0" height="1.0"/> <color red="0.50" green="0.50" blue="0.50"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.916667" height="0.916667"/> <color red="0.60" green="0.60" blue="0.60"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.833333" height="0.833333"/> <color red="0.70" green="0.70" blue="0.70"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.75" height="0.75"/> <color red="0.80" green="0.80" blue="0.80"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.666667" height="0.666667"/> <color red="0.90" green="0.90" blue="0.90"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_28">
<text string="ANY 3">
@@ -3664,206 +3692,60 @@
<element ref="reel_background">
<bounds x="59" y="167" width="70" height="70"/>
</element>
- <element name="lamp11" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp11" ref="reel_lamp" state="0">
<bounds x="59.0000" y="167.0000" width="70.0000" height="70.0000"/>
</element>
- <element name="lamp11" ref="reel_lamp_layer_1" state="0">
- <bounds x="61.9167" y="169.9167" width="64.1667" height="64.1667"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_2" state="0">
- <bounds x="64.8333" y="172.8333" width="58.3333" height="58.3333"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_3" state="0">
- <bounds x="67.7500" y="175.7500" width="52.5000" height="52.5000"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_4" state="0">
- <bounds x="70.6667" y="178.6667" width="46.6667" height="46.6667"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_5" state="0">
- <bounds x="73.5833" y="181.5833" width="40.8333" height="40.8333"/>
- </element>
- <element name="sreel1" ref="reel0" state="0">
+ <element ref="reel0">
<bounds x="59" y="167" width="70" height="70"/>
+ <yscroll name="sreel1" size="0.0833333" wrap="yes" min="66901" max="1366"/>
</element>
<element ref="reel_background">
<bounds x="70" y="389" width="70" height="150"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp13" ref="reel_lamp" state="0">
<bounds x="70.0000" y="389.0000" width="70.0000" height="50.0000"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_1" state="0">
- <bounds x="72.9167" y="391.0833" width="64.1667" height="45.8333"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_2" state="0">
- <bounds x="75.8333" y="393.1667" width="58.3333" height="41.6667"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_3" state="0">
- <bounds x="78.7500" y="395.2500" width="52.5000" height="37.5000"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_4" state="0">
- <bounds x="81.6667" y="397.3333" width="46.6667" height="33.3333"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_5" state="0">
- <bounds x="84.5833" y="399.4167" width="40.8333" height="29.1667"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp14" ref="reel_lamp" state="0">
<bounds x="70.0000" y="439.0000" width="70.0000" height="50.0000"/>
</element>
- <element name="lamp14" ref="reel_lamp_layer_1" state="0">
- <bounds x="72.9167" y="441.0833" width="64.1667" height="45.8333"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_2" state="0">
- <bounds x="75.8333" y="443.1667" width="58.3333" height="41.6667"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_3" state="0">
- <bounds x="78.7500" y="445.2500" width="52.5000" height="37.5000"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_4" state="0">
- <bounds x="81.6667" y="447.3333" width="46.6667" height="33.3333"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_5" state="0">
- <bounds x="84.5833" y="449.4167" width="40.8333" height="29.1667"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp15" ref="reel_lamp" state="0">
<bounds x="70.0000" y="489.0000" width="70.0000" height="50.0000"/>
</element>
- <element name="lamp15" ref="reel_lamp_layer_1" state="0">
- <bounds x="72.9167" y="491.0833" width="64.1667" height="45.8333"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_2" state="0">
- <bounds x="75.8333" y="493.1667" width="58.3333" height="41.6667"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_3" state="0">
- <bounds x="78.7500" y="495.2500" width="52.5000" height="37.5000"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_4" state="0">
- <bounds x="81.6667" y="497.3333" width="46.6667" height="33.3333"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_5" state="0">
- <bounds x="84.5833" y="499.4167" width="40.8333" height="29.1667"/>
- </element>
- <element name="sreel2" ref="reel1" state="0">
+ <element ref="reel1">
<bounds x="70" y="389" width="70" height="150"/>
+ <yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="168" y="389" width="70" height="150"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp16" ref="reel_lamp" state="0">
<bounds x="168.0000" y="389.0000" width="70.0000" height="50.0000"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="170.9167" y="391.0833" width="64.1667" height="45.8333"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="173.8333" y="393.1667" width="58.3333" height="41.6667"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="176.7500" y="395.2500" width="52.5000" height="37.5000"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="179.6667" y="397.3333" width="46.6667" height="33.3333"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="182.5833" y="399.4167" width="40.8333" height="29.1667"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp17" ref="reel_lamp" state="0">
<bounds x="168.0000" y="439.0000" width="70.0000" height="50.0000"/>
</element>
- <element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="170.9167" y="441.0833" width="64.1667" height="45.8333"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="173.8333" y="443.1667" width="58.3333" height="41.6667"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="176.7500" y="445.2500" width="52.5000" height="37.5000"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="179.6667" y="447.3333" width="46.6667" height="33.3333"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="182.5833" y="449.4167" width="40.8333" height="29.1667"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp18" ref="reel_lamp" state="0">
<bounds x="168.0000" y="489.0000" width="70.0000" height="50.0000"/>
</element>
- <element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="170.9167" y="491.0833" width="64.1667" height="45.8333"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="173.8333" y="493.1667" width="58.3333" height="41.6667"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="176.7500" y="495.2500" width="52.5000" height="37.5000"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="179.6667" y="497.3333" width="46.6667" height="33.3333"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="182.5833" y="499.4167" width="40.8333" height="29.1667"/>
- </element>
- <element name="sreel3" ref="reel2" state="0">
+ <element ref="reel2">
<bounds x="168" y="389" width="70" height="150"/>
+ <yscroll name="sreel3" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="266" y="389" width="70" height="150"/>
</element>
- <element name="lamp19" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp19" ref="reel_lamp" state="0">
<bounds x="266.0000" y="389.0000" width="70.0000" height="50.0000"/>
</element>
- <element name="lamp19" ref="reel_lamp_layer_1" state="0">
- <bounds x="268.9167" y="391.0833" width="64.1667" height="45.8333"/>
- </element>
- <element name="lamp19" ref="reel_lamp_layer_2" state="0">
- <bounds x="271.8333" y="393.1667" width="58.3333" height="41.6667"/>
- </element>
- <element name="lamp19" ref="reel_lamp_layer_3" state="0">
- <bounds x="274.7500" y="395.2500" width="52.5000" height="37.5000"/>
- </element>
- <element name="lamp19" ref="reel_lamp_layer_4" state="0">
- <bounds x="277.6667" y="397.3333" width="46.6667" height="33.3333"/>
- </element>
- <element name="lamp19" ref="reel_lamp_layer_5" state="0">
- <bounds x="280.5833" y="399.4167" width="40.8333" height="29.1667"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp20" ref="reel_lamp" state="0">
<bounds x="266.0000" y="439.0000" width="70.0000" height="50.0000"/>
</element>
- <element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="268.9167" y="441.0833" width="64.1667" height="45.8333"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="271.8333" y="443.1667" width="58.3333" height="41.6667"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="274.7500" y="445.2500" width="52.5000" height="37.5000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="277.6667" y="447.3333" width="46.6667" height="33.3333"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="280.5833" y="449.4167" width="40.8333" height="29.1667"/>
- </element>
- <element name="lamp21" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp21" ref="reel_lamp" state="0">
<bounds x="266.0000" y="489.0000" width="70.0000" height="50.0000"/>
</element>
- <element name="lamp21" ref="reel_lamp_layer_1" state="0">
- <bounds x="268.9167" y="491.0833" width="64.1667" height="45.8333"/>
- </element>
- <element name="lamp21" ref="reel_lamp_layer_2" state="0">
- <bounds x="271.8333" y="493.1667" width="58.3333" height="41.6667"/>
- </element>
- <element name="lamp21" ref="reel_lamp_layer_3" state="0">
- <bounds x="274.7500" y="495.2500" width="52.5000" height="37.5000"/>
- </element>
- <element name="lamp21" ref="reel_lamp_layer_4" state="0">
- <bounds x="277.6667" y="497.3333" width="46.6667" height="33.3333"/>
- </element>
- <element name="lamp21" ref="reel_lamp_layer_5" state="0">
- <bounds x="280.5833" y="499.4167" width="40.8333" height="29.1667"/>
- </element>
- <element name="sreel4" ref="reel3" state="0">
+ <element ref="reel3">
<bounds x="266" y="389" width="70" height="150"/>
+ <yscroll name="sreel4" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element name="lamp160" ref="lamp_160_1_border" state="0">
<bounds x="197" y="22" width="56" height="18"/>
@@ -6664,206 +6546,60 @@
<element ref="reel_background">
<bounds x="1100" y="32" width="120" height="240"/>
</element>
- <element name="lamp11" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp11" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="32.0000" width="120.0000" height="240.0000"/>
</element>
- <element name="lamp11" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="42.0000" width="110.0000" height="220.0000"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="52.0000" width="100.0000" height="200.0000"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="62.0000" width="90.0000" height="180.0000"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="72.0000" width="80.0000" height="160.0000"/>
- </element>
- <element name="lamp11" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="82.0000" width="70.0000" height="140.0000"/>
- </element>
- <element name="sreel1" ref="reel0" state="0">
+ <element ref="reel0">
<bounds x="1100" y="32" width="120" height="240"/>
+ <yscroll name="sreel1" size="0.0833333" wrap="yes" min="66901" max="1366"/>
</element>
<element ref="reel_background">
<bounds x="1240" y="32" width="120" height="240"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp13" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp13" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp13" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp14" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp14" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp14" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp15" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp15" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp15" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel2" ref="reel1" state="0">
+ <element ref="reel1">
<bounds x="1240" y="32" width="120" height="240"/>
+ <yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1380" y="32" width="120" height="240"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp16" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp16" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp16" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp17" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp17" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp17" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp18" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp18" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp18" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel3" ref="reel2" state="0">
+ <element ref="reel2">
<bounds x="1380" y="32" width="120" height="240"/>
+ <yscroll name="sreel3" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1520" y="32" width="120" height="240"/>
</element>
- <element name="lamp19" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp19" ref="reel_lamp" state="0">
<bounds x="1520.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp19" ref="reel_lamp_layer_1" state="0">
- <bounds x="1525.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp19" ref="reel_lamp_layer_2" state="0">
- <bounds x="1530.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp19" ref="reel_lamp_layer_3" state="0">
- <bounds x="1535.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp19" ref="reel_lamp_layer_4" state="0">
- <bounds x="1540.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp19" ref="reel_lamp_layer_5" state="0">
- <bounds x="1545.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp20" ref="reel_lamp" state="0">
<bounds x="1520.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp20" ref="reel_lamp_layer_1" state="0">
- <bounds x="1525.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_2" state="0">
- <bounds x="1530.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_3" state="0">
- <bounds x="1535.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_4" state="0">
- <bounds x="1540.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp20" ref="reel_lamp_layer_5" state="0">
- <bounds x="1545.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp21" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp21" ref="reel_lamp" state="0">
<bounds x="1520.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp21" ref="reel_lamp_layer_1" state="0">
- <bounds x="1525.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp21" ref="reel_lamp_layer_2" state="0">
- <bounds x="1530.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp21" ref="reel_lamp_layer_3" state="0">
- <bounds x="1535.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp21" ref="reel_lamp_layer_4" state="0">
- <bounds x="1540.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp21" ref="reel_lamp_layer_5" state="0">
- <bounds x="1545.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel4" ref="reel3" state="0">
+ <element ref="reel3">
<bounds x="1520" y="32" width="120" height="240"/>
+ <yscroll name="sreel4" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element name="reel1" ref="debug_stepper_value">
<bounds x="1100" y="272" width="50" height="30"/>
diff --git a/src/mame/layout/sc2casr2.lay b/src/mame/layout/sc2casr2.lay
index d03cb57f9dc..9445fb007a5 100644
--- a/src/mame/layout/sc2casr2.lay
+++ b/src/mame/layout/sc2casr2.lay
@@ -1612,35 +1612,115 @@
<color red="1.0" green="1.0" blue="1.0"/>
</rect>
</element>
- <element name="reel0" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel1" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel2" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel3" defstate="0">
- <reel reelreversed="1" stateoffset="-1365" numsymbolsvisible="1" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel4" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
- </element>
- <element name="reel5" defstate="0">
- <reel reelreversed="1" stateoffset="2730" numsymbolsvisible="3" symbollist="reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel,reel">
- <color red="0.0" green="0.0" blue="0.0"/>
- </reel>
+ <element name="reel0">
+ <rect> <bounds x="0" y="0" width="80" height="736"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="54" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="100" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="146" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="192" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="238" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="284" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="330" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="376" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="422" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="468" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="514" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="560" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="606" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="652" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="698" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel1">
+ <rect> <bounds x="0" y="0" width="80" height="736"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="54" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="100" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="146" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="192" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="238" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="284" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="330" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="376" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="422" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="468" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="514" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="560" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="606" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="652" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="698" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel2">
+ <rect> <bounds x="0" y="0" width="80" height="736"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="54" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="100" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="146" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="192" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="238" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="284" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="330" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="376" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="422" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="468" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="514" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="560" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="606" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="652" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="698" width="72" height="30"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel3">
+ <rect> <bounds x="0" y="0" width="80" height="960"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="88" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="168" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="248" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="328" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="408" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="488" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="568" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="648" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="728" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="808" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="888" width="72" height="72"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel4">
+ <rect> <bounds x="0" y="0" width="80" height="1024"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="72" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="136" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="200" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="264" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="328" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="392" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="456" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="520" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="584" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="648" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="712" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="776" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="840" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="904" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="968" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ </element>
+ <element name="reel5">
+ <rect> <bounds x="0" y="0" width="80" height="1024"/> <color alpha="0.0"/> </rect>
+ <text string="reel"> <bounds x="4" y="8" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="72" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="136" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="200" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="264" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="328" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="392" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="456" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="520" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="584" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="648" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="712" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="776" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="840" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="904" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="reel"> <bounds x="4" y="968" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
</element>
<element name="led_background">
<rect>
@@ -1712,38 +1792,14 @@
<color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
- <element name="reel_lamp_layer_0" defstate="0">
- <rect>
- <color red="0.40" green="0.40" blue="0.40"/>
- </rect>
- <disk state="1">
- <color red="0.50" green="0.50" blue="0.50"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_1" defstate="0">
- <disk state="1">
- <color red="0.60" green="0.60" blue="0.60"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_2" defstate="0">
- <disk state="1">
- <color red="0.70" green="0.70" blue="0.70"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_3" defstate="0">
- <disk state="1">
- <color red="0.80" green="0.80" blue="0.80"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_4" defstate="0">
- <disk state="1">
- <color red="0.90" green="0.90" blue="0.90"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_5" defstate="0">
- <disk state="1">
- <color red="1.00" green="1.00" blue="1.00"/>
- </disk>
+ <element name="reel_lamp" defstate="0">
+ <rect> <color red="0.40" green="0.40" blue="0.40"/> </rect>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="1.0" height="1.0"/> <color red="0.50" green="0.50" blue="0.50"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.916667" height="0.916667"/> <color red="0.60" green="0.60" blue="0.60"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.833333" height="0.833333"/> <color red="0.70" green="0.70" blue="0.70"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.75" height="0.75"/> <color red="0.80" green="0.80" blue="0.80"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.666667" height="0.666667"/> <color red="0.90" green="0.90" blue="0.90"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_203">
<text string="ON WINLINE">
@@ -3794,326 +3850,92 @@
<element ref="reel_background">
<bounds x="169" y="617" width="80" height="140"/>
</element>
- <element name="lamp50" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp50" ref="reel_lamp" state="0">
<bounds x="169.0000" y="617.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp50" ref="reel_lamp_layer_1" state="0">
- <bounds x="172.3333" y="618.9445" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_2" state="0">
- <bounds x="175.6667" y="620.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_3" state="0">
- <bounds x="179.0000" y="622.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_4" state="0">
- <bounds x="182.3333" y="624.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_5" state="0">
- <bounds x="185.6667" y="626.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp49" ref="reel_lamp" state="0">
<bounds x="169.0000" y="663.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp49" ref="reel_lamp_layer_1" state="0">
- <bounds x="172.3333" y="665.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_2" state="0">
- <bounds x="175.6667" y="667.5556" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_3" state="0">
- <bounds x="179.0000" y="669.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_4" state="0">
- <bounds x="182.3333" y="671.4445" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_5" state="0">
- <bounds x="185.6667" y="673.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp48" ref="reel_lamp" state="0">
<bounds x="169.0000" y="710.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp48" ref="reel_lamp_layer_1" state="0">
- <bounds x="172.3333" y="712.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_2" state="0">
- <bounds x="175.6667" y="714.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_3" state="0">
- <bounds x="179.0000" y="716.1666" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_4" state="0">
- <bounds x="182.3333" y="718.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_5" state="0">
- <bounds x="185.6667" y="720.0555" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel1" ref="reel0" state="0">
+ <element ref="reel0">
<bounds x="169" y="617" width="80" height="140"/>
+ <yscroll name="sreel1" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="251" y="617" width="80" height="140"/>
</element>
- <element name="lamp53" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp53" ref="reel_lamp" state="0">
<bounds x="251.0000" y="617.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp53" ref="reel_lamp_layer_1" state="0">
- <bounds x="254.3333" y="618.9445" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_2" state="0">
- <bounds x="257.6667" y="620.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_3" state="0">
- <bounds x="261.0000" y="622.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_4" state="0">
- <bounds x="264.3333" y="624.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_5" state="0">
- <bounds x="267.6667" y="626.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp52" ref="reel_lamp" state="0">
<bounds x="251.0000" y="663.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp52" ref="reel_lamp_layer_1" state="0">
- <bounds x="254.3333" y="665.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_2" state="0">
- <bounds x="257.6667" y="667.5556" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_3" state="0">
- <bounds x="261.0000" y="669.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_4" state="0">
- <bounds x="264.3333" y="671.4445" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_5" state="0">
- <bounds x="267.6667" y="673.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp51" ref="reel_lamp" state="0">
<bounds x="251.0000" y="710.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp51" ref="reel_lamp_layer_1" state="0">
- <bounds x="254.3333" y="712.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_2" state="0">
- <bounds x="257.6667" y="714.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_3" state="0">
- <bounds x="261.0000" y="716.1666" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_4" state="0">
- <bounds x="264.3333" y="718.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_5" state="0">
- <bounds x="267.6667" y="720.0555" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel2" ref="reel1" state="0">
+ <element ref="reel1">
<bounds x="251" y="617" width="80" height="140"/>
+ <yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="333" y="617" width="80" height="140"/>
</element>
- <element name="lamp66" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp66" ref="reel_lamp" state="0">
<bounds x="333.0000" y="617.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp66" ref="reel_lamp_layer_1" state="0">
- <bounds x="336.3333" y="618.9445" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_2" state="0">
- <bounds x="339.6667" y="620.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_3" state="0">
- <bounds x="343.0000" y="622.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_4" state="0">
- <bounds x="346.3333" y="624.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_5" state="0">
- <bounds x="349.6667" y="626.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp65" ref="reel_lamp" state="0">
<bounds x="333.0000" y="663.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp65" ref="reel_lamp_layer_1" state="0">
- <bounds x="336.3333" y="665.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_2" state="0">
- <bounds x="339.6667" y="667.5556" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_3" state="0">
- <bounds x="343.0000" y="669.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_4" state="0">
- <bounds x="346.3333" y="671.4445" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_5" state="0">
- <bounds x="349.6667" y="673.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp64" ref="reel_lamp" state="0">
<bounds x="333.0000" y="710.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp64" ref="reel_lamp_layer_1" state="0">
- <bounds x="336.3333" y="712.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_2" state="0">
- <bounds x="339.6667" y="714.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_3" state="0">
- <bounds x="343.0000" y="716.1666" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_4" state="0">
- <bounds x="346.3333" y="718.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_5" state="0">
- <bounds x="349.6667" y="720.0555" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel3" ref="reel2" state="0">
+ <element ref="reel2">
<bounds x="333" y="617" width="80" height="140"/>
+ <yscroll name="sreel3" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="459" y="356" width="80" height="80"/>
</element>
- <element name="lamp68" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp68" ref="reel_lamp" state="0">
<bounds x="459.0000" y="356.0000" width="80.0000" height="80.0000"/>
</element>
- <element name="lamp68" ref="reel_lamp_layer_1" state="0">
- <bounds x="462.3333" y="359.3333" width="73.3333" height="73.3333"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_2" state="0">
- <bounds x="465.6667" y="362.6667" width="66.6667" height="66.6667"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_3" state="0">
- <bounds x="469.0000" y="366.0000" width="60.0000" height="60.0000"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_4" state="0">
- <bounds x="472.3333" y="369.3333" width="53.3333" height="53.3333"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_5" state="0">
- <bounds x="475.6667" y="372.6667" width="46.6667" height="46.6667"/>
- </element>
- <element name="sreel4" ref="reel3" state="0">
+ <element ref="reel3">
<bounds x="459" y="356" width="80" height="80"/>
+ <yscroll name="sreel4" size="0.0833333" wrap="yes" min="66901" max="1366"/>
</element>
<element ref="reel_background">
<bounds x="974" y="99" width="80" height="140"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="974.0000" y="99.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="977.3333" y="100.9444" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="980.6667" y="102.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="984.0000" y="104.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="987.3333" y="106.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="990.6667" y="108.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="974.0000" y="145.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="977.3333" y="147.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="980.6667" y="149.5556" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="984.0000" y="151.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="987.3333" y="153.4444" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="990.6667" y="155.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="974.0000" y="192.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="977.3333" y="194.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="980.6667" y="196.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="984.0000" y="198.1667" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="987.3333" y="200.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="990.6667" y="202.0556" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel5" ref="reel4" state="0">
+ <element ref="reel4">
<bounds x="974" y="99" width="80" height="140"/>
+ <yscroll name="sreel5" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1010" y="174" width="80" height="140"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="1010.0000" y="174.0000" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="1013.3333" y="175.9444" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="1016.6667" y="177.8889" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="1020.0000" y="179.8333" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="1023.3333" y="181.7778" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="1026.6666" y="183.7222" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="1010.0000" y="220.6667" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="1013.3333" y="222.6111" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="1016.6667" y="224.5556" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="1020.0000" y="226.5000" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="1023.3333" y="228.4444" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="1026.6666" y="230.3889" width="46.6667" height="27.2222"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="1010.0000" y="267.3333" width="80.0000" height="46.6667"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="1013.3333" y="269.2778" width="73.3333" height="42.7778"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="1016.6667" y="271.2222" width="66.6667" height="38.8889"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="1020.0000" y="273.1667" width="60.0000" height="35.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="1023.3333" y="275.1111" width="53.3333" height="31.1111"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="1026.6666" y="277.0556" width="46.6667" height="27.2222"/>
- </element>
- <element name="sreel6" ref="reel5" state="0">
+ <element ref="reel5">
<bounds x="1010" y="174" width="80" height="140"/>
+ <yscroll name="sreel6" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element name="lamp162" ref="lamp_162_1_border" state="0">
<bounds x="540" y="387" width="36" height="26"/>
@@ -6617,326 +6439,92 @@
<element ref="reel_background">
<bounds x="1100" y="32" width="120" height="240"/>
</element>
- <element name="lamp50" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp50" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp50" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp49" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp49" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp48" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp48" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel1" ref="reel0" state="0">
+ <element ref="reel0">
<bounds x="1100" y="32" width="120" height="240"/>
+ <yscroll name="sreel1" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1240" y="32" width="120" height="240"/>
</element>
- <element name="lamp53" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp53" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp53" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp52" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp52" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp51" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp51" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel2" ref="reel1" state="0">
+ <element ref="reel1">
<bounds x="1240" y="32" width="120" height="240"/>
+ <yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1380" y="32" width="120" height="240"/>
</element>
- <element name="lamp66" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp66" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp66" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp65" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp65" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp64" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp64" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel3" ref="reel2" state="0">
+ <element ref="reel2">
<bounds x="1380" y="32" width="120" height="240"/>
+ <yscroll name="sreel3" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1520" y="32" width="120" height="240"/>
</element>
- <element name="lamp68" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp68" ref="reel_lamp" state="0">
<bounds x="1520.0000" y="32.0000" width="120.0000" height="240.0000"/>
</element>
- <element name="lamp68" ref="reel_lamp_layer_1" state="0">
- <bounds x="1525.0000" y="42.0000" width="110.0000" height="220.0000"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_2" state="0">
- <bounds x="1530.0000" y="52.0000" width="100.0000" height="200.0000"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_3" state="0">
- <bounds x="1535.0000" y="62.0000" width="90.0000" height="180.0000"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_4" state="0">
- <bounds x="1540.0000" y="72.0000" width="80.0000" height="160.0000"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_5" state="0">
- <bounds x="1545.0000" y="82.0000" width="70.0000" height="140.0000"/>
- </element>
- <element name="sreel4" ref="reel3" state="0">
+ <element ref="reel3">
<bounds x="1520" y="32" width="120" height="240"/>
+ <yscroll name="sreel4" size="0.0833333" wrap="yes" min="66901" max="1366"/>
</element>
<element ref="reel_background">
<bounds x="1660" y="32" width="120" height="240"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="1660.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="1665.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="1670.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="1675.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="1680.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="1685.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="1660.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="1665.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="1670.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="1675.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="1680.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="1685.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="1660.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="1665.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="1670.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="1675.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="1680.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="1685.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel5" ref="reel4" state="0">
+ <element ref="reel4">
<bounds x="1660" y="32" width="120" height="240"/>
+ <yscroll name="sreel5" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element ref="reel_background">
<bounds x="1100" y="312" width="120" height="240"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="312.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="315.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="318.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="322.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="325.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="328.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="392.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="395.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="398.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="402.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="405.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="408.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp-2" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="472.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp-2" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="475.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="478.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="482.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="485.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp-2" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="488.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="sreel6" ref="reel5" state="0">
+ <element ref="reel5">
<bounds x="1100" y="312" width="120" height="240"/>
+ <yscroll name="sreel6" size="0.1875" wrap="yes" min="128342" max="62807"/>
</element>
<element name="reel1" ref="debug_stepper_value">
<bounds x="1100" y="272" width="50" height="30"/>
diff --git a/src/mame/layout/sc2prem2.lay b/src/mame/layout/sc2prem2.lay
index 3904d08dad9..063a1d64435 100644
--- a/src/mame/layout/sc2prem2.lay
+++ b/src/mame/layout/sc2prem2.lay
@@ -1773,338 +1773,95 @@
</rect>
</element>
<element name="reel0">
- <rect>
- <bounds x="0" y="0" width="80" height="1024"/>
- <color alpha="0.0"/>
- </rect>
- <text string="Bell">
- <bounds x="4" y="8" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry(*)">
- <bounds x="4" y="72" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon">
- <bounds x="4" y="136" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="200" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Bar">
- <bounds x="4" y="264" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="328" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Grape">
- <bounds x="4" y="392" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="456" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Melon">
- <bounds x="4" y="520" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="584" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry(*)">
- <bounds x="4" y="648" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="712" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cashpot">
- <bounds x="4" y="776" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="840" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon(*)">
- <bounds x="4" y="904" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="968" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
+ <rect> <bounds x="0" y="0" width="80" height="1024"/> <color alpha="0.0"/> </rect>
+ <text string="Bell"> <bounds x="4" y="8" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry(*)"> <bounds x="4" y="72" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon"> <bounds x="4" y="136" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="200" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Bar"> <bounds x="4" y="264" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="328" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Grape"> <bounds x="4" y="392" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="456" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Melon"> <bounds x="4" y="520" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="584" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry(*)"> <bounds x="4" y="648" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="712" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cashpot"> <bounds x="4" y="776" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="840" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon(*)"> <bounds x="4" y="904" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="968" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
</element>
<element name="reel1">
- <rect>
- <bounds x="0" y="0" width="80" height="1024"/>
- <color alpha="0.0"/>
- </rect>
- <text string="Bell">
- <bounds x="4" y="8" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="72" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="136" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Melon">
- <bounds x="4" y="200" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Bar">
- <bounds x="4" y="264" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Grape">
- <bounds x="4" y="328" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry(*)">
- <bounds x="4" y="392" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="456" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="520" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Melon">
- <bounds x="4" y="584" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Grape">
- <bounds x="4" y="648" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cashpot">
- <bounds x="4" y="712" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon">
- <bounds x="4" y="776" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="840" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon(*)">
- <bounds x="4" y="904" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="968" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
+ <rect> <bounds x="0" y="0" width="80" height="1024"/> <color alpha="0.0"/> </rect>
+ <text string="Bell"> <bounds x="4" y="8" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="72" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="136" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Melon"> <bounds x="4" y="200" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Bar"> <bounds x="4" y="264" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Grape"> <bounds x="4" y="328" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry(*)"> <bounds x="4" y="392" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="456" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="520" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Melon"> <bounds x="4" y="584" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Grape"> <bounds x="4" y="648" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cashpot"> <bounds x="4" y="712" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon"> <bounds x="4" y="776" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="840" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon(*)"> <bounds x="4" y="904" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="968" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
</element>
<element name="reel2">
- <rect>
- <bounds x="0" y="0" width="80" height="1024"/>
- <color alpha="0.0"/>
- </rect>
- <text string="Bell">
- <bounds x="4" y="8" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="72" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon">
- <bounds x="4" y="136" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange(*)">
- <bounds x="4" y="200" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Bar">
- <bounds x="4" y="264" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Grape">
- <bounds x="4" y="328" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="392" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="456" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Melon">
- <bounds x="4" y="520" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="584" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Grape">
- <bounds x="4" y="648" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange(*)">
- <bounds x="4" y="712" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon">
- <bounds x="4" y="776" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cashpot">
- <bounds x="4" y="840" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon">
- <bounds x="4" y="904" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="968" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
+ <rect> <bounds x="0" y="0" width="80" height="1024"/> <color alpha="0.0"/> </rect>
+ <text string="Bell"> <bounds x="4" y="8" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="72" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon"> <bounds x="4" y="136" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange(*)"> <bounds x="4" y="200" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Bar"> <bounds x="4" y="264" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Grape"> <bounds x="4" y="328" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="392" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="456" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Melon"> <bounds x="4" y="520" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="584" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Grape"> <bounds x="4" y="648" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange(*)"> <bounds x="4" y="712" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon"> <bounds x="4" y="776" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cashpot"> <bounds x="4" y="840" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon"> <bounds x="4" y="904" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="968" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
</element>
<element name="reel3">
- <rect>
- <bounds x="0" y="0" width="80" height="1024"/>
- <color alpha="0.0"/>
- </rect>
- <text string="Bell">
- <bounds x="4" y="8" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="72" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon">
- <bounds x="4" y="136" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Grape">
- <bounds x="4" y="200" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Bar">
- <bounds x="4" y="264" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon(*)">
- <bounds x="4" y="328" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Grape">
- <bounds x="4" y="392" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="456" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Melon">
- <bounds x="4" y="520" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="584" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cashpot">
- <bounds x="4" y="648" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Orange">
- <bounds x="4" y="712" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon">
- <bounds x="4" y="776" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry(*)">
- <bounds x="4" y="840" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Lemon">
- <bounds x="4" y="904" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="Cherry">
- <bounds x="4" y="968" width="72" height="48"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
+ <rect> <bounds x="0" y="0" width="80" height="1024"/> <color alpha="0.0"/> </rect>
+ <text string="Bell"> <bounds x="4" y="8" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="72" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon"> <bounds x="4" y="136" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Grape"> <bounds x="4" y="200" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Bar"> <bounds x="4" y="264" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon(*)"> <bounds x="4" y="328" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Grape"> <bounds x="4" y="392" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="456" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Melon"> <bounds x="4" y="520" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="584" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cashpot"> <bounds x="4" y="648" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Orange"> <bounds x="4" y="712" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon"> <bounds x="4" y="776" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry(*)"> <bounds x="4" y="840" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Lemon"> <bounds x="4" y="904" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="Cherry"> <bounds x="4" y="968" width="72" height="48"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
</element>
<element name="reel4" defstate="0">
- <rect>
- <bounds x="0" y="0" width="70" height="840"/>
- <color alpha="0.0"/>
- </rect>
- <text string="6">
- <bounds x="5" y="5" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="1">
- <bounds x="5" y="75" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="2">
- <bounds x="5" y="145" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="3">
- <bounds x="5" y="215" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="4">
- <bounds x="5" y="285" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="5">
- <bounds x="5" y="355" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="6">
- <bounds x="5" y="425" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="1">
- <bounds x="5" y="495" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="2">
- <bounds x="5" y="565" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="3">
- <bounds x="5" y="635" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="4">
- <bounds x="5" y="705" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
- <text string="5">
- <bounds x="5" y="775" width="60" height="60"/>
- <color red="0.0" green="0.0" blue="0.0"/>
- </text>
+ <rect> <bounds x="0" y="0" width="70" height="840"/> <color alpha="0.0"/> </rect>
+ <text string="6"> <bounds x="5" y="5" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="1"> <bounds x="5" y="75" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="2"> <bounds x="5" y="145" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="3"> <bounds x="5" y="215" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="4"> <bounds x="5" y="285" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="5"> <bounds x="5" y="355" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="6"> <bounds x="5" y="425" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="1"> <bounds x="5" y="495" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="2"> <bounds x="5" y="565" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="3"> <bounds x="5" y="635" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="4"> <bounds x="5" y="705" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
+ <text string="5"> <bounds x="5" y="775" width="60" height="60"/> <color red="0.0" green="0.0" blue="0.0"/> </text>
</element>
<element name="led_background">
<rect>
@@ -2171,38 +1928,14 @@
<color red="0.0" green="0.0" blue="0.0"/>
</rect>
</element>
- <element name="reel_lamp_layer_0" defstate="0">
- <rect>
- <color red="0.40" green="0.40" blue="0.40"/>
- </rect>
- <disk state="1">
- <color red="0.50" green="0.50" blue="0.50"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_1" defstate="0">
- <disk state="1">
- <color red="0.60" green="0.60" blue="0.60"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_2" defstate="0">
- <disk state="1">
- <color red="0.70" green="0.70" blue="0.70"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_3" defstate="0">
- <disk state="1">
- <color red="0.80" green="0.80" blue="0.80"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_4" defstate="0">
- <disk state="1">
- <color red="0.90" green="0.90" blue="0.90"/>
- </disk>
- </element>
- <element name="reel_lamp_layer_5" defstate="0">
- <disk state="1">
- <color red="1.00" green="1.00" blue="1.00"/>
- </disk>
+ <element name="reel_lamp" defstate="0">
+ <rect> <color red="0.40" green="0.40" blue="0.40"/> </rect>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="1.0" height="1.0"/> <color red="0.50" green="0.50" blue="0.50"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.916667" height="0.916667"/> <color red="0.60" green="0.60" blue="0.60"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.833333" height="0.833333"/> <color red="0.70" green="0.70" blue="0.70"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.75" height="0.75"/> <color red="0.80" green="0.80" blue="0.80"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.666667" height="0.666667"/> <color red="0.90" green="0.90" blue="0.90"/> </disk>
+ <disk state="1"> <bounds xc="0.5" yc="0.5" width="0.583333" height="0.583333"/> <color red="1.00" green="1.00" blue="1.00"/> </disk>
</element>
<element name="label_15">
<text string="&#xA3;">
@@ -2525,60 +2258,15 @@
<element ref="reel_background">
<bounds x="236" y="413" width="80" height="190"/>
</element>
- <element name="lamp50" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp50" ref="reel_lamp" state="0">
<bounds x="236.0000" y="413.0000" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp50" ref="reel_lamp_layer_1" state="0">
- <bounds x="239.3333" y="415.6389" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_2" state="0">
- <bounds x="242.6667" y="418.2778" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_3" state="0">
- <bounds x="246.0000" y="420.9167" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_4" state="0">
- <bounds x="249.3333" y="423.5555" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_5" state="0">
- <bounds x="252.6667" y="426.1945" width="46.6667" height="36.9444"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp49" ref="reel_lamp" state="0">
<bounds x="236.0000" y="476.3333" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp49" ref="reel_lamp_layer_1" state="0">
- <bounds x="239.3333" y="478.9722" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_2" state="0">
- <bounds x="242.6667" y="481.6111" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_3" state="0">
- <bounds x="246.0000" y="484.2500" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_4" state="0">
- <bounds x="249.3333" y="486.8889" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_5" state="0">
- <bounds x="252.6667" y="489.5278" width="46.6667" height="36.9444"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp48" ref="reel_lamp" state="0">
<bounds x="236.0000" y="539.6667" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp48" ref="reel_lamp_layer_1" state="0">
- <bounds x="239.3333" y="542.3056" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_2" state="0">
- <bounds x="242.6667" y="544.9445" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_3" state="0">
- <bounds x="246.0000" y="547.5834" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_4" state="0">
- <bounds x="249.3333" y="550.2222" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_5" state="0">
- <bounds x="252.6667" y="552.8611" width="46.6667" height="36.9444"/>
- </element>
<element ref="reel0">
<bounds x="236" y="413" width="80" height="190"/>
<yscroll name="sreel1" size="0.1875" wrap="yes" min="128342" max="62807"/>
@@ -2586,60 +2274,15 @@
<element ref="reel_background">
<bounds x="318" y="413" width="80" height="190"/>
</element>
- <element name="lamp53" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp53" ref="reel_lamp" state="0">
<bounds x="318.0000" y="413.0000" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp53" ref="reel_lamp_layer_1" state="0">
- <bounds x="321.3333" y="415.6389" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_2" state="0">
- <bounds x="324.6667" y="418.2778" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_3" state="0">
- <bounds x="328.0000" y="420.9167" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_4" state="0">
- <bounds x="331.3333" y="423.5555" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_5" state="0">
- <bounds x="334.6667" y="426.1945" width="46.6667" height="36.9444"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp52" ref="reel_lamp" state="0">
<bounds x="318.0000" y="476.3333" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp52" ref="reel_lamp_layer_1" state="0">
- <bounds x="321.3333" y="478.9722" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_2" state="0">
- <bounds x="324.6667" y="481.6111" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_3" state="0">
- <bounds x="328.0000" y="484.2500" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_4" state="0">
- <bounds x="331.3333" y="486.8889" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_5" state="0">
- <bounds x="334.6667" y="489.5278" width="46.6667" height="36.9444"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp51" ref="reel_lamp" state="0">
<bounds x="318.0000" y="539.6667" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp51" ref="reel_lamp_layer_1" state="0">
- <bounds x="321.3333" y="542.3056" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_2" state="0">
- <bounds x="324.6667" y="544.9445" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_3" state="0">
- <bounds x="328.0000" y="547.5834" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_4" state="0">
- <bounds x="331.3333" y="550.2222" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_5" state="0">
- <bounds x="334.6667" y="552.8611" width="46.6667" height="36.9444"/>
- </element>
<element ref="reel1">
<bounds x="318" y="413" width="80" height="190"/>
<yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
@@ -2647,60 +2290,15 @@
<element ref="reel_background">
<bounds x="400" y="413" width="80" height="190"/>
</element>
- <element name="lamp66" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp66" ref="reel_lamp" state="0">
<bounds x="400.0000" y="413.0000" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp66" ref="reel_lamp_layer_1" state="0">
- <bounds x="403.3333" y="415.6389" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_2" state="0">
- <bounds x="406.6667" y="418.2778" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_3" state="0">
- <bounds x="410.0000" y="420.9167" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_4" state="0">
- <bounds x="413.3333" y="423.5555" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_5" state="0">
- <bounds x="416.6667" y="426.1945" width="46.6667" height="36.9444"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp65" ref="reel_lamp" state="0">
<bounds x="400.0000" y="476.3333" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp65" ref="reel_lamp_layer_1" state="0">
- <bounds x="403.3333" y="478.9722" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_2" state="0">
- <bounds x="406.6667" y="481.6111" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_3" state="0">
- <bounds x="410.0000" y="484.2500" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_4" state="0">
- <bounds x="413.3333" y="486.8889" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_5" state="0">
- <bounds x="416.6667" y="489.5278" width="46.6667" height="36.9444"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp64" ref="reel_lamp" state="0">
<bounds x="400.0000" y="539.6667" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp64" ref="reel_lamp_layer_1" state="0">
- <bounds x="403.3333" y="542.3056" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_2" state="0">
- <bounds x="406.6667" y="544.9445" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_3" state="0">
- <bounds x="410.0000" y="547.5834" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_4" state="0">
- <bounds x="413.3333" y="550.2222" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_5" state="0">
- <bounds x="416.6667" y="552.8611" width="46.6667" height="36.9444"/>
- </element>
<element ref="reel2">
<bounds x="400" y="413" width="80" height="190"/>
<yscroll name="sreel3" size="0.1875" wrap="yes" min="128342" max="62807"/>
@@ -2708,60 +2306,15 @@
<element ref="reel_background">
<bounds x="482" y="413" width="80" height="190"/>
</element>
- <element name="lamp69" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp69" ref="reel_lamp" state="0">
<bounds x="482.0000" y="413.0000" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp69" ref="reel_lamp_layer_1" state="0">
- <bounds x="485.3333" y="415.6389" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp69" ref="reel_lamp_layer_2" state="0">
- <bounds x="488.6667" y="418.2778" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp69" ref="reel_lamp_layer_3" state="0">
- <bounds x="492.0000" y="420.9167" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp69" ref="reel_lamp_layer_4" state="0">
- <bounds x="495.3333" y="423.5555" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp69" ref="reel_lamp_layer_5" state="0">
- <bounds x="498.6667" y="426.1945" width="46.6667" height="36.9444"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp68" ref="reel_lamp" state="0">
<bounds x="482.0000" y="476.3333" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp68" ref="reel_lamp_layer_1" state="0">
- <bounds x="485.3333" y="478.9722" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_2" state="0">
- <bounds x="488.6667" y="481.6111" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_3" state="0">
- <bounds x="492.0000" y="484.2500" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_4" state="0">
- <bounds x="495.3333" y="486.8889" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_5" state="0">
- <bounds x="498.6667" y="489.5278" width="46.6667" height="36.9444"/>
- </element>
- <element name="lamp67" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp67" ref="reel_lamp" state="0">
<bounds x="482.0000" y="539.6667" width="80.0000" height="63.3333"/>
</element>
- <element name="lamp67" ref="reel_lamp_layer_1" state="0">
- <bounds x="485.3333" y="542.3056" width="73.3333" height="58.0556"/>
- </element>
- <element name="lamp67" ref="reel_lamp_layer_2" state="0">
- <bounds x="488.6667" y="544.9445" width="66.6667" height="52.7778"/>
- </element>
- <element name="lamp67" ref="reel_lamp_layer_3" state="0">
- <bounds x="492.0000" y="547.5834" width="60.0000" height="47.5000"/>
- </element>
- <element name="lamp67" ref="reel_lamp_layer_4" state="0">
- <bounds x="495.3333" y="550.2222" width="53.3333" height="42.2222"/>
- </element>
- <element name="lamp67" ref="reel_lamp_layer_5" state="0">
- <bounds x="498.6667" y="552.8611" width="46.6667" height="36.9444"/>
- </element>
<element ref="reel3">
<bounds x="482" y="413" width="80" height="190"/>
<yscroll name="sreel4" size="0.1875" wrap="yes" min="128342" max="62807"/>
@@ -4911,60 +4464,15 @@
<element ref="reel_background">
<bounds x="1100" y="32" width="120" height="240"/>
</element>
- <element name="lamp50" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp50" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp50" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp50" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp49" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp49" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp49" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp48" ref="reel_lamp" state="0">
<bounds x="1100.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp48" ref="reel_lamp_layer_1" state="0">
- <bounds x="1105.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_2" state="0">
- <bounds x="1110.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_3" state="0">
- <bounds x="1115.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_4" state="0">
- <bounds x="1120.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp48" ref="reel_lamp_layer_5" state="0">
- <bounds x="1125.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
<element ref="reel0">
<bounds x="1100" y="32" width="120" height="240"/>
<yscroll name="sreel1" size="0.1875" wrap="yes" min="128342" max="62807"/>
@@ -4972,60 +4480,15 @@
<element ref="reel_background">
<bounds x="1240" y="32" width="120" height="240"/>
</element>
- <element name="lamp53" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp53" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp53" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp53" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp52" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp52" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp52" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp51" ref="reel_lamp" state="0">
<bounds x="1240.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp51" ref="reel_lamp_layer_1" state="0">
- <bounds x="1245.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_2" state="0">
- <bounds x="1250.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_3" state="0">
- <bounds x="1255.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_4" state="0">
- <bounds x="1260.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp51" ref="reel_lamp_layer_5" state="0">
- <bounds x="1265.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
<element ref="reel1">
<bounds x="1240" y="32" width="120" height="240"/>
<yscroll name="sreel2" size="0.1875" wrap="yes" min="128342" max="62807"/>
@@ -5033,60 +4496,15 @@
<element ref="reel_background">
<bounds x="1380" y="32" width="120" height="240"/>
</element>
- <element name="lamp66" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp66" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp66" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp66" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp65" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp65" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp65" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp64" ref="reel_lamp" state="0">
<bounds x="1380.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp64" ref="reel_lamp_layer_1" state="0">
- <bounds x="1385.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_2" state="0">
- <bounds x="1390.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_3" state="0">
- <bounds x="1395.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_4" state="0">
- <bounds x="1400.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp64" ref="reel_lamp_layer_5" state="0">
- <bounds x="1405.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
<element ref="reel2">
<bounds x="1380" y="32" width="120" height="240"/>
<yscroll name="sreel3" size="0.1875" wrap="yes" min="128342" max="62807"/>
@@ -5094,60 +4512,15 @@
<element ref="reel_background">
<bounds x="1520" y="32" width="120" height="240"/>
</element>
- <element name="lamp69" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp69" ref="reel_lamp" state="0">
<bounds x="1520.0000" y="32.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp69" ref="reel_lamp_layer_1" state="0">
- <bounds x="1525.0000" y="35.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp69" ref="reel_lamp_layer_2" state="0">
- <bounds x="1530.0000" y="38.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp69" ref="reel_lamp_layer_3" state="0">
- <bounds x="1535.0000" y="42.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp69" ref="reel_lamp_layer_4" state="0">
- <bounds x="1540.0000" y="45.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp69" ref="reel_lamp_layer_5" state="0">
- <bounds x="1545.0000" y="48.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp68" ref="reel_lamp" state="0">
<bounds x="1520.0000" y="112.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp68" ref="reel_lamp_layer_1" state="0">
- <bounds x="1525.0000" y="115.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_2" state="0">
- <bounds x="1530.0000" y="118.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_3" state="0">
- <bounds x="1535.0000" y="122.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_4" state="0">
- <bounds x="1540.0000" y="125.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp68" ref="reel_lamp_layer_5" state="0">
- <bounds x="1545.0000" y="128.6667" width="70.0000" height="46.6667"/>
- </element>
- <element name="lamp67" ref="reel_lamp_layer_0" state="0">
+ <element name="lamp67" ref="reel_lamp" state="0">
<bounds x="1520.0000" y="192.0000" width="120.0000" height="80.0000"/>
</element>
- <element name="lamp67" ref="reel_lamp_layer_1" state="0">
- <bounds x="1525.0000" y="195.3333" width="110.0000" height="73.3333"/>
- </element>
- <element name="lamp67" ref="reel_lamp_layer_2" state="0">
- <bounds x="1530.0000" y="198.6667" width="100.0000" height="66.6667"/>
- </element>
- <element name="lamp67" ref="reel_lamp_layer_3" state="0">
- <bounds x="1535.0000" y="202.0000" width="90.0000" height="60.0000"/>
- </element>
- <element name="lamp67" ref="reel_lamp_layer_4" state="0">
- <bounds x="1540.0000" y="205.3333" width="80.0000" height="53.3333"/>
- </element>
- <element name="lamp67" ref="reel_lamp_layer_5" state="0">
- <bounds x="1545.0000" y="208.6667" width="70.0000" height="46.6667"/>
- </element>
<element ref="reel3">
<bounds x="1520" y="32" width="120" height="240"/>
<yscroll name="sreel4" size="0.1875" wrap="yes" min="128342" max="62807"/>
diff --git a/src/tools/srcclean.cpp b/src/tools/srcclean.cpp
index b8402d31f7a..19f550d6f17 100644
--- a/src/tools/srcclean.cpp
+++ b/src/tools/srcclean.cpp
@@ -186,7 +186,7 @@ private:
// output state management
unsigned m_output_column = 0U;
- unsigned m_indent;
+ unsigned m_indent = 0U;
unsigned m_tab_limit = std::numeric_limits<unsigned>::max();
std::vector<char32_t> m_whitespace;