Previous 199869 Revisions Next

r36148 Saturday 28th February, 2015 at 21:55:41 UTC by hap
pff, managed to make an internal layout for ebball

(MESS)New working game added
-------------------
Entex Baseball [hap, Sean Riddle]
[src/mess/drivers]hh_tms1k.c hh_ucom4.c
[src/mess/layout]ebball.lay

trunk/src/mess/drivers/hh_tms1k.c
r244659r244660
5656#include "amaztron.lh"
5757#include "bankshot.lh"
5858#include "cnsector.lh"
59#include "ebball.lh"
5960#include "elecdet.lh"
6061#include "comp4.lh"
6162#include "mathmagi.lh"
r244659r244660
6768#include "tandy12.lh" // clickable
6869#include "tc4.lh"
6970
70// test-layouts - use external artwork
71#include "ebball.lh"
7271
73
7472class hh_tms1k_state : public driver_device
7573{
7674public:
r244659r244660
298296   m_display_maxy = maxy;
299297
300298   // update current state
299   UINT32 mask = (1 << maxx) - 1;
301300   for (int y = 0; y < maxy; y++)
302      m_display_state[y] = (sety >> y & 1) ? setx : 0;
301      m_display_state[y] = (sety >> y & 1) ? (setx & mask) : 0;
303302   
304303   display_update();
305304}
r244659r244660
379378   for (int y = 0; y < 8; y++)
380379   {
381380      m_7seg_mask[y] = 0x7f;
382      m_display_state[y] = (m_r >> y & 1) ? ((m_o >> 1 & 0x7f) | (m_o << 7 & 0x80)) : 0;
381      m_display_state[y] = (m_r >> y & 1) ? (m_o >> 1) : 0;
383382   }
384383
385384   // R8: custom math symbols digit
r244659r244660
802801
803802/***************************************************************************
804803
805  Entex Baseball
804  Entex Electronic Baseball (1)
806805  * TMS1000NLP MP0914 (die labeled MP0914A)
806 
807  This is a handheld LED baseball game. One player controls the batter, the CPU
808  or other player controls the pitcher. Pitcher throw buttons are on a 'joypad'
809  obtained from a compartment in the back. Player scores are supposed to be
810  written down manually, the game doesn't save scores or innings (this annoyance
811  was resolved in the sequel). For more information, refer to the official manual.
812 
813  The overlay graphic is known to have 2 versions: one where the field players
814  are denoted by words ("left", "center", "short", etc), and an alternate one
815  with little guys drawn next to the LEDs.
807816
808  NOTE!: MESS external artwork is recommended
809817
810818  lamp translation table: led LDzz from game PCB = MESS lampyx:
811819
r244659r244660
827835   // R8 is a 7seg
828836   m_7seg_mask[8] = 0x7f;
829837   
830   display_matrix(7, 9, m_o, m_r);
838   display_matrix(7, 9, ~m_o, m_r);
831839}
832840
833841READ8_MEMBER(hh_tms1k_state::ebball_read_k)
r244659r244660
859867
860868static INPUT_PORTS_START( ebball )
861869   PORT_START("IN.0") // R1
862   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 )
863   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_BUTTON2 )
864   PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_BUTTON3 )
870   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_PLAYER(2) PORT_NAME("P2 Change Up")
871   PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_START ) PORT_NAME("Change Sides")
872   PORT_CONFNAME( 0x04, 0x04, "Pitcher" )
873   PORT_CONFSETTING(    0x04, "Auto" )
874   PORT_CONFSETTING(    0x00, "Manual" )
865875   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNUSED )
866876
867877   PORT_START("IN.1") // R2
868   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON4 )
878   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_PLAYER(2) PORT_NAME("P2 Fast Ball")
869879   PORT_BIT( 0x0e, IP_ACTIVE_HIGH, IPT_UNUSED )
870880
871881   PORT_START("IN.2") // R3
872   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON5 )
882   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON5 ) PORT_PLAYER(2) PORT_NAME("P2 Knuckler")
873883   PORT_BIT( 0x0e, IP_ACTIVE_HIGH, IPT_UNUSED )
874884
875885   PORT_START("IN.3") // R4
876   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON6 )
886   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON3 ) PORT_PLAYER(2) PORT_NAME("P2 Curve")
877887   PORT_BIT( 0x0e, IP_ACTIVE_HIGH, IPT_UNUSED )
878888
879889   PORT_START("IN.4") // R5
880   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON7 )
890   PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_BUTTON4 ) PORT_PLAYER(2) PORT_NAME("P2 Slider")
881891   PORT_BIT( 0x0e, IP_ACTIVE_HIGH, IPT_UNUSED )
882892
883893   PORT_START("IN.5") // Vss!
884894   PORT_BIT( 0x07, IP_ACTIVE_HIGH, IPT_UNUSED )
885   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON8 )
895   PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("P1 Batter")
886896INPUT_PORTS_END
887897
888898static MACHINE_CONFIG_START( ebball, hh_tms1k_state )
889899
890900   /* basic machine hardware */
891   MCFG_CPU_ADD("maincpu", TMS1000, 350000) // RC osc. R=43K, C=47pf -> ~350kHz
901   MCFG_CPU_ADD("maincpu", TMS1000, 375000) // RC osc. R=43K, C=47pf -> ~375kHz
892902   MCFG_TMS1XXX_READ_K_CB(READ8(hh_tms1k_state, ebball_read_k))
893903   MCFG_TMS1XXX_WRITE_R_CB(WRITE16(hh_tms1k_state, ebball_write_r))
894904   MCFG_TMS1XXX_WRITE_O_CB(WRITE16(hh_tms1k_state, ebball_write_o))
r244659r244660
15491559   m_display_maxx = 7;
15501560
15511561   // R0-R2: select digit
1552   UINT8 o = BITSWAP8(m_o,3,5,2,1,4,0,6,7);
1562   UINT8 o = BITSWAP8(m_o,3,5,2,1,4,0,6,7) & 0x7f;
15531563   for (int y = 0; y < m_display_maxy; y++)
15541564   {
15551565      m_7seg_mask[y] = 0x7f;
r244659r244660
22842294CONS( 1979, amaztron, 0, 0, amaztron, amaztron, driver_device, 0, "Coleco", "Amaze-A-Tron", GAME_SUPPORTS_SAVE )
22852295CONS( 1981, tc4, 0, 0, tc4, tc4, driver_device, 0, "Coleco", "Total Control 4", GAME_SUPPORTS_SAVE )
22862296
2287CONS( 1979, ebball, 0, 0, ebball, ebball, driver_device, 0, "Entex", "Baseball (Entex)", GAME_SUPPORTS_SAVE | GAME_NOT_WORKING )
2297CONS( 1979, ebball, 0, 0, ebball, ebball, driver_device, 0, "Entex", "Baseball (Entex)", GAME_SUPPORTS_SAVE )
22882298
22892299CONS( 1979, elecdet, 0, 0, elecdet, elecdet, driver_device, 0, "Ideal", "Electronic Detective", GAME_SUPPORTS_SAVE )
22902300
trunk/src/mess/drivers/hh_ucom4.c
r244659r244660
66
77
88
9  serial  device  etc
10------------------------------------------
9  serial  device  etc.
10-----------------------------------------------
1111 @048     uPD552  1980, Tomy Tennis
1212 *085     uPD650  1980, Roland TR-808
1313  102     uPD553  1981, Bandai Block Out
r244659r244660
186186   m_display_maxy = maxy;
187187
188188   // update current state
189   UINT32 mask = (1 << maxx) - 1;
189190   for (int y = 0; y < maxy; y++)
190      m_display_state[y] = (sety >> y & 1) ? setx : 0;
191      m_display_state[y] = (sety >> y & 1) ? (setx & mask) : 0;
191192   
192193   display_update();
193194}
r244659r244660
435436   MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.25)
436437MACHINE_CONFIG_END
437438
439
440
438441/***************************************************************************
439442
440443  Tomy(tronic) Pac-Man (manufactured in Japan)
trunk/src/mess/layout/ebball.lay
r244659r244660
44<!-- define elements -->
55
66   <element name="static_black"><rect><color red="0.0" green="0.0" blue="0.0" /></rect></element>
7   <element name="disk_black"><disk><color red="0.0" green="0.0" blue="0.0" /></disk></element>
8   <element name="disk_green"><disk><color red="0.0" green="0.38" blue="0.15" /></disk></element>
9   <element name="static_white"><rect><color red="0.75" green="0.75" blue="0.75" /></rect></element>
10   <element name="disk_white"><disk><color red="0.75" green="0.75" blue="0.75" /></disk></element>
11   <element name="disk_white2"><disk><color red="0.85" green="0.85" blue="0.85" /></disk></element>
712
13<!-- background is dark-red, to hide the leds -->
14
15   <element name="static_bg"><rect><color red="0.2" green="0.04" blue="0.05" /></rect></element>
16   <element name="disk_bg"><disk><color red="0.2" green="0.04" blue="0.05" /></disk></element>
17
18
19   <element name="field_guy">
20      <rect><color red="0.0" green="0.38" blue="0.15" /></rect>
21      <text string=":-)"><color red="0.85" green="0.85" blue="0.85" /></text>
22   </element>
23   <element name="base_guy">
24      <rect><color red="0.2" green="0.04" blue="0.05" /></rect>
25      <text string=":-)"><color red="0.85" green="0.85" blue="0.85" /></text>
26   </element>
27   <element name="pitcher">
28      <rect><color red="0.2" green="0.04" blue="0.05" /></rect>
29      <text string=":-P"><color red="0.85" green="0.85" blue="0.85" /></text>
30   </element>
31
32   <element name="text_s"><text string="S" align="1"><color red="0.95" green="0.95" blue="0.95" /></text></element>
33   <element name="text_b"><text string="B" align="1"><color red="0.95" green="0.95" blue="0.95" /></text></element>
34   <element name="text_o"><text string="O" align="1"><color red="0.95" green="0.95" blue="0.95" /></text></element>
35
36   <element name="text_s2">
37      <rect><color red="0.2" green="0.04" blue="0.05" /></rect>
38      <text string="S"><color red="0.95" green="0.95" blue="0.95" /></text>
39   </element>
40   <element name="text_b2"><text string="B"><color red="0.95" green="0.95" blue="0.95" /></text></element>
41
42   <element name="text_single"><text string="1B"><color red="0.95" green="0.95" blue="0.95" /></text></element>
43   <element name="text_double"><text string="2B"><color red="0.95" green="0.95" blue="0.95" /></text></element>
44   <element name="text_triple"><text string="3B"><color red="0.95" green="0.95" blue="0.95" /></text></element>
45
46   <element name="text_home"><text string="HOME" align="2"><color red="0.95" green="0.95" blue="0.95" /></text></element>
47   <element name="text_run"><text string="RUN" align="1"><color red="0.95" green="0.95" blue="0.95" /></text></element>
48
49   <element name="text_score"><text string="SCORE"><color red="0.4" green="0.4" blue="0.4" /></text></element>
50   <element name="text_count"><text string="COUNT"><color red="0.4" green="0.4" blue="0.4" /></text></element>
51
52
853   <element name="digit" defstate="0">
954      <led7seg><color red="1.0" green="0.20" blue="0.22" /></led7seg>
1055   </element>
56
1157   <element name="led" defstate="0">
1258      <disk state="0"><color red="0.2" green="0.04" blue="0.05" /></disk>
1359      <disk state="1"><color red="1.0" green="0.20" blue="0.22" /></disk>
1460   </element>
1561
1662
63
1764<!-- build screen -->
1865
19   <view name="Test Layout">
20      <bounds left="0" right="64" top="0" bottom="64" />
66   <view name="Internal Layout">
67      <bounds left="0" right="100" top="0" bottom="114" />
2168      <bezel element="static_black">
22         <bounds left="0" right="64" top="0" bottom="64" />
69         <bounds left="0" right="100" top="0" bottom="114" />
2370      </bezel>
2471
25      <bezel name="digit8" element="digit"><bounds x="0" y="0" width="10" height="15" /></bezel>
72   <!-- outer bezel -->
2673
27   <!-- 7*9 matrix -->
74      <bezel element="text_score"><bounds x="5.5" y="2" width="8" height="3" /></bezel>
75      <bezel element="text_count"><bounds x="86" y="2" width="8" height="3" /></bezel>
2876
29      <bezel name="lamp0" element="led"><bounds x="0" y="20" width="1" height="1" /></bezel>
30      <bezel name="lamp1" element="led"><bounds x="2" y="20" width="1" height="1" /></bezel>
31      <bezel name="lamp2" element="led"><bounds x="4" y="20" width="1" height="1" /></bezel>
32      <bezel name="lamp3" element="led"><bounds x="6" y="20" width="1" height="1" /></bezel>
33      <bezel name="lamp4" element="led"><bounds x="8" y="20" width="1" height="1" /></bezel>
34      <bezel name="lamp5" element="led"><bounds x="10" y="20" width="1" height="1" /></bezel>
35      <bezel name="lamp6" element="led"><bounds x="12" y="20" width="1" height="1" /></bezel>
77      <bezel name="digit8" element="digit"><bounds x="5" y="7" width="8" height="12" /></bezel>
3678
37      <bezel name="lamp10" element="led"><bounds x="0" y="22" width="1" height="1" /></bezel>
38      <bezel name="lamp11" element="led"><bounds x="2" y="22" width="1" height="1" /></bezel>
39      <bezel name="lamp12" element="led"><bounds x="4" y="22" width="1" height="1" /></bezel>
40      <bezel name="lamp13" element="led"><bounds x="6" y="22" width="1" height="1" /></bezel>
41      <bezel name="lamp14" element="led"><bounds x="8" y="22" width="1" height="1" /></bezel>
42      <bezel name="lamp15" element="led"><bounds x="10" y="22" width="1" height="1" /></bezel>
43      <bezel name="lamp16" element="led"><bounds x="12" y="22" width="1" height="1" /></bezel>
79      <bezel element="text_s"><bounds x="82.5" y="7.2" width="2" height="2.5" /></bezel>
80      <bezel name="lamp70" element="led"><bounds x="86" y="7" width="3" height="3" /></bezel>
81      <bezel name="lamp71" element="led"><bounds x="90" y="7" width="3" height="3" /></bezel>
4482
45      <bezel name="lamp20" element="led"><bounds x="0" y="24" width="1" height="1" /></bezel>
46      <bezel name="lamp21" element="led"><bounds x="2" y="24" width="1" height="1" /></bezel>
47      <bezel name="lamp22" element="led"><bounds x="4" y="24" width="1" height="1" /></bezel>
48      <bezel name="lamp23" element="led"><bounds x="6" y="24" width="1" height="1" /></bezel>
49      <bezel name="lamp24" element="led"><bounds x="8" y="24" width="1" height="1" /></bezel>
50      <bezel name="lamp25" element="led"><bounds x="10" y="24" width="1" height="1" /></bezel>
51      <bezel name="lamp26" element="led"><bounds x="12" y="24" width="1" height="1" /></bezel>
83      <bezel element="text_b"><bounds x="82.5" y="11.2" width="2" height="2.5" /></bezel>
84      <bezel name="lamp60" element="led"><bounds x="86" y="11" width="3" height="3" /></bezel>
85      <bezel name="lamp61" element="led"><bounds x="90" y="11" width="3" height="3" /></bezel>
86      <bezel name="lamp62" element="led"><bounds x="94" y="11" width="3" height="3" /></bezel>
5287
53      <bezel name="lamp30" element="led"><bounds x="0" y="26" width="1" height="1" /></bezel>
54      <bezel name="lamp31" element="led"><bounds x="2" y="26" width="1" height="1" /></bezel>
55      <bezel name="lamp32" element="led"><bounds x="4" y="26" width="1" height="1" /></bezel>
56      <bezel name="lamp33" element="led"><bounds x="6" y="26" width="1" height="1" /></bezel>
57      <bezel name="lamp34" element="led"><bounds x="8" y="26" width="1" height="1" /></bezel>
58      <bezel name="lamp35" element="led"><bounds x="10" y="26" width="1" height="1" /></bezel>
59      <bezel name="lamp36" element="led"><bounds x="12" y="26" width="1" height="1" /></bezel>
88      <bezel element="text_o"><bounds x="82.5" y="15.2" width="2" height="2.5" /></bezel>
89      <bezel name="lamp72" element="led"><bounds x="86" y="15" width="3" height="3" /></bezel>
90      <bezel name="lamp73" element="led"><bounds x="90" y="15" width="3" height="3" /></bezel>
6091
61      <bezel name="lamp40" element="led"><bounds x="0" y="28" width="1" height="1" /></bezel>
62      <bezel name="lamp41" element="led"><bounds x="2" y="28" width="1" height="1" /></bezel>
63      <bezel name="lamp42" element="led"><bounds x="4" y="28" width="1" height="1" /></bezel>
64      <bezel name="lamp43" element="led"><bounds x="6" y="28" width="1" height="1" /></bezel>
65      <bezel name="lamp44" element="led"><bounds x="8" y="28" width="1" height="1" /></bezel>
66      <bezel name="lamp45" element="led"><bounds x="10" y="28" width="1" height="1" /></bezel>
67      <bezel name="lamp46" element="led"><bounds x="12" y="28" width="1" height="1" /></bezel>
6892
69      <bezel name="lamp50" element="led"><bounds x="0" y="30" width="1" height="1" /></bezel>
70      <bezel name="lamp51" element="led"><bounds x="2" y="30" width="1" height="1" /></bezel>
71      <bezel name="lamp52" element="led"><bounds x="4" y="30" width="1" height="1" /></bezel>
72      <bezel name="lamp53" element="led"><bounds x="6" y="30" width="1" height="1" /></bezel>
73      <bezel name="lamp54" element="led"><bounds x="8" y="30" width="1" height="1" /></bezel>
74      <bezel name="lamp55" element="led"><bounds x="10" y="30" width="1" height="1" /></bezel>
75      <bezel name="lamp56" element="led"><bounds x="12" y="30" width="1" height="1" /></bezel>
93   <!-- board -->
7694
77      <bezel name="lamp60" element="led"><bounds x="0" y="32" width="1" height="1" /></bezel>
78      <bezel name="lamp61" element="led"><bounds x="2" y="32" width="1" height="1" /></bezel>
79      <bezel name="lamp62" element="led"><bounds x="4" y="32" width="1" height="1" /></bezel>
80      <bezel name="lamp63" element="led"><bounds x="6" y="32" width="1" height="1" /></bezel>
81      <bezel name="lamp64" element="led"><bounds x="8" y="32" width="1" height="1" /></bezel>
82      <bezel name="lamp65" element="led"><bounds x="10" y="32" width="1" height="1" /></bezel>
83      <bezel name="lamp66" element="led"><bounds x="12" y="32" width="1" height="1" /></bezel>
95      <bezel element="disk_green"><bounds x="-5" y="25" width="110" height="110" /></bezel>
96      <bezel element="static_black"><bounds x="-10" y="75" width="120" height="65" /></bezel>
97      <bezel element="disk_bg"><bounds x="15" y="45" width="70" height="70" /></bezel>
98      <bezel element="static_black"><bounds x="0" y="85" width="100" height="40" /></bezel>
99      <bezel element="static_bg"><bounds x="15" y="75" width="70" height="26" /></bezel>
100      <bezel element="disk_bg"><bounds x="40" y="91" width="20" height="20" /></bezel>
84101
85      <bezel name="lamp70" element="led"><bounds x="0" y="34" width="1" height="1" /></bezel>
86      <bezel name="lamp71" element="led"><bounds x="2" y="34" width="1" height="1" /></bezel>
87      <bezel name="lamp72" element="led"><bounds x="4" y="34" width="1" height="1" /></bezel>
88      <bezel name="lamp73" element="led"><bounds x="6" y="34" width="1" height="1" /></bezel>
89      <bezel name="lamp74" element="led"><bounds x="8" y="34" width="1" height="1" /></bezel>
90      <bezel name="lamp75" element="led"><bounds x="10" y="34" width="1" height="1" /></bezel>
91      <bezel name="lamp76" element="led"><bounds x="12" y="34" width="1" height="1" /></bezel>
102   <!-- top edge -->
92103
93      <bezel name="lamp80" element="led"><bounds x="0" y="36" width="1" height="1" /></bezel>
94      <bezel name="lamp81" element="led"><bounds x="2" y="36" width="1" height="1" /></bezel>
95      <bezel name="lamp82" element="led"><bounds x="4" y="36" width="1" height="1" /></bezel>
96      <bezel name="lamp83" element="led"><bounds x="6" y="36" width="1" height="1" /></bezel>
97      <bezel name="lamp84" element="led"><bounds x="8" y="36" width="1" height="1" /></bezel>
98      <bezel name="lamp85" element="led"><bounds x="10" y="36" width="1" height="1" /></bezel>
99      <bezel name="lamp86" element="led"><bounds x="12" y="36" width="1" height="1" /></bezel>
104      <bezel element="disk_black"><bounds x="-1.3" y="44.7" width="10" height="10" /></bezel>
105      <bezel element="disk_black"><bounds x="91.3" y="44.7" width="10" height="10" /></bezel>
106      <bezel name="lamp43" element="led"><bounds x="2.2" y="48.2" width="3" height="3" /></bezel>
107      <bezel name="lamp50" element="led"><bounds x="94.8" y="48.2" width="3" height="3" /></bezel>
108      <bezel element="text_triple"><bounds x="2.2" y="44.5" width="3" height="2.5" /></bezel>
109      <bezel element="text_double"><bounds x="94.8" y="44.5" width="3" height="2.5" /></bezel>
100110
101      <bezel name="lamp90" element="led"><bounds x="0" y="38" width="1" height="1" /></bezel>
102      <bezel name="lamp91" element="led"><bounds x="2" y="38" width="1" height="1" /></bezel>
103      <bezel name="lamp92" element="led"><bounds x="4" y="38" width="1" height="1" /></bezel>
104      <bezel name="lamp93" element="led"><bounds x="6" y="38" width="1" height="1" /></bezel>
105      <bezel name="lamp94" element="led"><bounds x="8" y="38" width="1" height="1" /></bezel>
106      <bezel name="lamp95" element="led"><bounds x="10" y="38" width="1" height="1" /></bezel>
107      <bezel name="lamp96" element="led"><bounds x="12" y="38" width="1" height="1" /></bezel>
111      <bezel element="disk_black"><bounds x="18.5" y="26.5" width="10" height="10" /></bezel>
112      <bezel element="disk_black"><bounds x="71.5" y="26.5" width="10" height="10" /></bezel>
113      <bezel name="lamp53" element="led"><bounds x="22" y="30" width="3" height="3" /></bezel>
114      <bezel name="lamp51" element="led"><bounds x="75" y="30" width="3" height="3" /></bezel>
115      <bezel element="text_single"><bounds x="22" y="26.3" width="3" height="2.5" /></bezel>
116      <bezel element="text_single"><bounds x="75" y="26.3" width="3" height="2.5" /></bezel>
108117
118      <bezel element="disk_white2"><bounds x="45" y="20" width="10" height="10" /></bezel>
119      <bezel element="disk_black"><bounds x="45.5" y="20.5" width="9" height="9" /></bezel>
120      <bezel name="lamp52" element="led"><bounds x="48.5" y="23.5" width="3" height="3" /></bezel>
121      <bezel element="text_home"><bounds x="36" y="21.5" width="8" height="2.5" /></bezel>
122      <bezel element="text_run"><bounds x="56.5" y="21.5" width="8" height="2.5" /></bezel>
109123
124   <!-- field -->
125
126      <bezel element="field_guy"><bounds x="13" y="48.5" width="3" height="3" /></bezel>
127      <bezel element="disk_bg"><bounds x="12" y="52" width="5" height="5" /></bezel>
128      <bezel name="lamp42" element="led"><bounds x="13" y="53" width="3" height="3" /></bezel>
129
130      <bezel element="field_guy"><bounds x="48.5" y="31.5" width="3" height="3" /></bezel>
131      <bezel element="disk_bg"><bounds x="47.5" y="35" width="5" height="5" /></bezel>
132      <bezel name="lamp41" element="led"><bounds x="48.5" y="36" width="3" height="3" /></bezel>
133
134      <bezel element="field_guy"><bounds x="84" y="48.5" width="3" height="3" /></bezel>
135      <bezel element="disk_bg"><bounds x="83" y="52" width="5" height="5" /></bezel>
136      <bezel name="lamp40" element="led"><bounds x="84" y="53" width="3" height="3" /></bezel>
137
138   <!-- pitcher -->
139
140      <bezel element="pitcher"><bounds x="48.5" y="66.5" width="3" height="3" /></bezel>
141      <bezel element="static_white"><bounds x="46" y="71" width="0.5" height="18.5" /></bezel>
142      <bezel element="static_white"><bounds x="53.5" y="71" width="0.5" height="18.5" /></bezel>
143
144      <bezel name="lamp23" element="led"><bounds x="48.5" y="70.5" width="3" height="3" /></bezel>
145      <bezel name="lamp0" element="led"><bounds x="48.5" y="76" width="3" height="3" /></bezel>
146      <bezel name="lamp1" element="led"><bounds x="48.5" y="81.5" width="3" height="3" /></bezel>
147      <bezel name="lamp2" element="led"><bounds x="48.5" y="87" width="3" height="3" /></bezel>
148
149      <bezel name="lamp10" element="led"><bounds x="45" y="92.5" width="3" height="3" /></bezel>
150      <bezel name="lamp13" element="led"><bounds x="52" y="92.5" width="3" height="3" /></bezel>
151
152   <!-- bases -->
153
154      <bezel element="base_guy"><bounds x="70" y="58" width="3" height="3" /></bezel>
155      <bezel name="lamp30" element="led"><bounds x="70" y="62" width="3" height="3" /></bezel>
156
157      <bezel element="base_guy"><bounds x="61" y="49" width="3" height="3" /></bezel>
158      <bezel name="lamp31" element="led"><bounds x="61" y="53" width="3" height="3" /></bezel>
159
160      <bezel element="base_guy"><bounds x="36" y="49" width="3" height="3" /></bezel>
161      <bezel name="lamp32" element="led"><bounds x="36" y="53" width="3" height="3" /></bezel>
162
163      <bezel element="base_guy"><bounds x="27" y="58" width="3" height="3" /></bezel>
164      <bezel name="lamp33" element="led"><bounds x="27" y="62" width="3" height="3" /></bezel>
165
166      <bezel element="static_white"><bounds x="72" y="72" width="6" height="6" /></bezel>
167      <bezel element="static_bg"><bounds x="72.5" y="72.5" width="5" height="5" /></bezel>
168      <bezel name="lamp20" element="led"><bounds x="73.5" y="73.5" width="3" height="3" /></bezel>
169
170      <bezel element="static_white"><bounds x="47" y="47" width="6" height="6" /></bezel>
171      <bezel element="static_bg"><bounds x="47.5" y="47.5" width="5" height="5" /></bezel>
172      <bezel name="lamp21" element="led"><bounds x="48.5" y="48.5" width="3" height="3" /></bezel>
173
174      <bezel element="static_white"><bounds x="22" y="72" width="6" height="6" /></bezel>
175      <bezel element="static_bg"><bounds x="22.5" y="72.5" width="5" height="5" /></bezel>
176      <bezel name="lamp22" element="led"><bounds x="23.5" y="73.5" width="3" height="3" /></bezel>
177
178   <!-- home -->
179
180      <bezel element="static_white"><bounds x="47" y="97" width="6" height="3" /></bezel>
181      <bezel element="disk_white"><bounds x="47" y="97" width="6" height="6" /></bezel>
182      <bezel element="static_bg"><bounds x="47.5" y="97.5" width="5" height="2.51" /></bezel>
183      <bezel element="disk_bg"><bounds x="47.5" y="97.5" width="5" height="5" /></bezel>
184
185      <bezel element="text_b2"><bounds x="42.5" y="108.3" width="3" height="2.5" /></bezel>
186      <bezel name="lamp11" element="led"><bounds x="42.5" y="98.5" width="3" height="3" /></bezel>
187      <bezel name="lamp12" element="led"><bounds x="42.5" y="104" width="3" height="3" /></bezel>
188
189      <bezel element="text_s2"><bounds x="48.5" y="108.3" width="3" height="2.5" /></bezel>
190      <bezel name="lamp3" element="led"><bounds x="48.5" y="98.5" width="3" height="3" /></bezel>
191      <bezel name="lamp4" element="led"><bounds x="48.5" y="104" width="3" height="3" /></bezel>
192
193      <bezel element="text_b2"><bounds x="54.5" y="108.3" width="3" height="2.5" /></bezel>
194      <bezel name="lamp14" element="led"><bounds x="54.5" y="98.5" width="3" height="3" /></bezel>
195      <bezel name="lamp15" element="led"><bounds x="54.5" y="104" width="3" height="3" /></bezel>
196
197
110198   </view>
111199</mamelayout>


Previous 199869 Revisions Next


© 1997-2024 The MAME Team