trunk/src/mess/drivers/hh_tms1k.c
r244659 | r244660 | |
56 | 56 | #include "amaztron.lh" |
57 | 57 | #include "bankshot.lh" |
58 | 58 | #include "cnsector.lh" |
| 59 | #include "ebball.lh" |
59 | 60 | #include "elecdet.lh" |
60 | 61 | #include "comp4.lh" |
61 | 62 | #include "mathmagi.lh" |
r244659 | r244660 | |
67 | 68 | #include "tandy12.lh" // clickable |
68 | 69 | #include "tc4.lh" |
69 | 70 | |
70 | | // test-layouts - use external artwork |
71 | | #include "ebball.lh" |
72 | 71 | |
73 | | |
74 | 72 | class hh_tms1k_state : public driver_device |
75 | 73 | { |
76 | 74 | public: |
r244659 | r244660 | |
298 | 296 | m_display_maxy = maxy; |
299 | 297 | |
300 | 298 | // update current state |
| 299 | UINT32 mask = (1 << maxx) - 1; |
301 | 300 | 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; |
303 | 302 | |
304 | 303 | display_update(); |
305 | 304 | } |
r244659 | r244660 | |
379 | 378 | for (int y = 0; y < 8; y++) |
380 | 379 | { |
381 | 380 | 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; |
383 | 382 | } |
384 | 383 | |
385 | 384 | // R8: custom math symbols digit |
r244659 | r244660 | |
802 | 801 | |
803 | 802 | /*************************************************************************** |
804 | 803 | |
805 | | Entex Baseball |
| 804 | Entex Electronic Baseball (1) |
806 | 805 | * 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. |
807 | 816 | |
808 | | NOTE!: MESS external artwork is recommended |
809 | 817 | |
810 | 818 | lamp translation table: led LDzz from game PCB = MESS lampyx: |
811 | 819 | |
r244659 | r244660 | |
827 | 835 | // R8 is a 7seg |
828 | 836 | m_7seg_mask[8] = 0x7f; |
829 | 837 | |
830 | | display_matrix(7, 9, m_o, m_r); |
| 838 | display_matrix(7, 9, ~m_o, m_r); |
831 | 839 | } |
832 | 840 | |
833 | 841 | READ8_MEMBER(hh_tms1k_state::ebball_read_k) |
r244659 | r244660 | |
859 | 867 | |
860 | 868 | static INPUT_PORTS_START( ebball ) |
861 | 869 | 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" ) |
865 | 875 | PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_UNUSED ) |
866 | 876 | |
867 | 877 | 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") |
869 | 879 | PORT_BIT( 0x0e, IP_ACTIVE_HIGH, IPT_UNUSED ) |
870 | 880 | |
871 | 881 | 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") |
873 | 883 | PORT_BIT( 0x0e, IP_ACTIVE_HIGH, IPT_UNUSED ) |
874 | 884 | |
875 | 885 | 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") |
877 | 887 | PORT_BIT( 0x0e, IP_ACTIVE_HIGH, IPT_UNUSED ) |
878 | 888 | |
879 | 889 | 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") |
881 | 891 | PORT_BIT( 0x0e, IP_ACTIVE_HIGH, IPT_UNUSED ) |
882 | 892 | |
883 | 893 | PORT_START("IN.5") // Vss! |
884 | 894 | 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") |
886 | 896 | INPUT_PORTS_END |
887 | 897 | |
888 | 898 | static MACHINE_CONFIG_START( ebball, hh_tms1k_state ) |
889 | 899 | |
890 | 900 | /* 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 |
892 | 902 | MCFG_TMS1XXX_READ_K_CB(READ8(hh_tms1k_state, ebball_read_k)) |
893 | 903 | MCFG_TMS1XXX_WRITE_R_CB(WRITE16(hh_tms1k_state, ebball_write_r)) |
894 | 904 | MCFG_TMS1XXX_WRITE_O_CB(WRITE16(hh_tms1k_state, ebball_write_o)) |
r244659 | r244660 | |
1549 | 1559 | m_display_maxx = 7; |
1550 | 1560 | |
1551 | 1561 | // 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; |
1553 | 1563 | for (int y = 0; y < m_display_maxy; y++) |
1554 | 1564 | { |
1555 | 1565 | m_7seg_mask[y] = 0x7f; |
r244659 | r244660 | |
2284 | 2294 | CONS( 1979, amaztron, 0, 0, amaztron, amaztron, driver_device, 0, "Coleco", "Amaze-A-Tron", GAME_SUPPORTS_SAVE ) |
2285 | 2295 | CONS( 1981, tc4, 0, 0, tc4, tc4, driver_device, 0, "Coleco", "Total Control 4", GAME_SUPPORTS_SAVE ) |
2286 | 2296 | |
2287 | | CONS( 1979, ebball, 0, 0, ebball, ebball, driver_device, 0, "Entex", "Baseball (Entex)", GAME_SUPPORTS_SAVE | GAME_NOT_WORKING ) |
| 2297 | CONS( 1979, ebball, 0, 0, ebball, ebball, driver_device, 0, "Entex", "Baseball (Entex)", GAME_SUPPORTS_SAVE ) |
2288 | 2298 | |
2289 | 2299 | CONS( 1979, elecdet, 0, 0, elecdet, elecdet, driver_device, 0, "Ideal", "Electronic Detective", GAME_SUPPORTS_SAVE ) |
2290 | 2300 | |
trunk/src/mess/layout/ebball.lay
r244659 | r244660 | |
4 | 4 | <!-- define elements --> |
5 | 5 | |
6 | 6 | <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> |
7 | 12 | |
| 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 | |
8 | 53 | <element name="digit" defstate="0"> |
9 | 54 | <led7seg><color red="1.0" green="0.20" blue="0.22" /></led7seg> |
10 | 55 | </element> |
| 56 | |
11 | 57 | <element name="led" defstate="0"> |
12 | 58 | <disk state="0"><color red="0.2" green="0.04" blue="0.05" /></disk> |
13 | 59 | <disk state="1"><color red="1.0" green="0.20" blue="0.22" /></disk> |
14 | 60 | </element> |
15 | 61 | |
16 | 62 | |
| 63 | |
17 | 64 | <!-- build screen --> |
18 | 65 | |
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" /> |
21 | 68 | <bezel element="static_black"> |
22 | | <bounds left="0" right="64" top="0" bottom="64" /> |
| 69 | <bounds left="0" right="100" top="0" bottom="114" /> |
23 | 70 | </bezel> |
24 | 71 | |
25 | | <bezel name="digit8" element="digit"><bounds x="0" y="0" width="10" height="15" /></bezel> |
| 72 | <!-- outer bezel --> |
26 | 73 | |
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> |
28 | 76 | |
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> |
36 | 78 | |
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> |
44 | 82 | |
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> |
52 | 87 | |
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> |
60 | 91 | |
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> |
68 | 92 | |
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 --> |
76 | 94 | |
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> |
84 | 101 | |
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 --> |
92 | 103 | |
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> |
100 | 110 | |
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> |
108 | 117 | |
| 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> |
109 | 123 | |
| 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 | |
110 | 198 | </view> |
111 | 199 | </mamelayout> |