1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles, Couriersud
/***************************************************************************
Galaxian hardware family
***************************************************************************/
#ifndef MAME_INCLUDES_GALAXIAN_H
#define MAME_INCLUDES_GALAXIAN_H
#pragma once
#include "cpu/mcs48/mcs48.h"
#include "machine/gen_latch.h"
#include "machine/i8255.h"
#include "machine/netlist.h"
#include "machine/timer.h"
#include "sound/ay8910.h"
#include "sound/dac.h"
#include "sound/digitalk.h"
#include "sound/sp0250.h"
#include "emupal.h"
#include "screen.h"
#include "tilemap.h"
namespace {
/* master clocks */
static constexpr XTAL GALAXIAN_MASTER_CLOCK(18.432_MHz_XTAL);
static constexpr XTAL KONAMI_SOUND_CLOCK(14.318181_MHz_XTAL);
static constexpr XTAL SIDAM_MASTER_CLOCK(12_MHz_XTAL);
/* we scale horizontally by 3 to render stars correctly */
static constexpr int GALAXIAN_XSCALE = 3;
/* the Sidam bootlegs have a 12 MHz XTAL instead */
static constexpr int SIDAM_XSCALE = 2;
static constexpr XTAL GALAXIAN_PIXEL_CLOCK(GALAXIAN_XSCALE*GALAXIAN_MASTER_CLOCK / 3);
static constexpr XTAL SIDAM_PIXEL_CLOCK(SIDAM_XSCALE*SIDAM_MASTER_CLOCK / 2);
/* H counts from 128->511, HBLANK starts at 130 and ends at 250 */
/* we normalize this here so that we count 0->383 with HBLANK */
/* from 264-383 */
static constexpr int GALAXIAN_HTOTAL = (384 * GALAXIAN_XSCALE);
static constexpr int GALAXIAN_HBEND = (0 * GALAXIAN_XSCALE);
//static constexpr int GALAXIAN_H0START = (6*GALAXIAN_XSCALE)
//static constexpr int GALAXIAN_HBSTART = (264*GALAXIAN_XSCALE)
static constexpr int GALAXIAN_H0START = (0 * GALAXIAN_XSCALE);
static constexpr int GALAXIAN_HBSTART = (256 * GALAXIAN_XSCALE);
static constexpr int GALAXIAN_VTOTAL = (264);
static constexpr int GALAXIAN_VBEND = (16);
static constexpr int GALAXIAN_VBSTART = (224 + 16);
static constexpr int SIDAM_HTOTAL = (384 * SIDAM_XSCALE);
static constexpr int SIDAM_HBEND = (0 * SIDAM_XSCALE);
static constexpr int SIDAM_H0START = (0 * SIDAM_XSCALE);
static constexpr int SIDAM_HBSTART = (256 * SIDAM_XSCALE);
} // anonymous namespace
class galaxian_state : public driver_device
{
public:
galaxian_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag)
, m_maincpu(*this, "maincpu")
, m_audiocpu(*this, "audiocpu")
, m_ay8910(*this, "8910.%u", 0)
, m_ay8910_cclimber(*this, "cclimber_audio:aysnd")
, m_ppi8255(*this, "ppi8255_%u", 0)
, m_gfxdecode(*this, "gfxdecode")
, m_screen(*this, "screen")
, m_palette(*this, "palette")
, m_soundlatch(*this, "soundlatch")
, m_netlist(*this, "konami")
, m_filter_ctl(*this, "konami:ctl%u", 0)
, m_ckong_coinage(*this, "COINAGE")
, m_spriteram(*this, "spriteram")
, m_videoram(*this, "videoram")
, m_decrypted_opcodes(*this, "decrypted_opcodes")
, m_lamps(*this, "lamp%u", 0U)
{ }
/* video extension callbacks */
typedef void (galaxian_state::*extend_tile_info_func)(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
typedef void (galaxian_state::*extend_sprite_info_func)(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
typedef void (galaxian_state::*draw_bullet_func)(bitmap_rgb32 &bitmap, const rectangle &cliprect, int offs, int x, int y);
typedef void (galaxian_state::*draw_background_func)(bitmap_rgb32 &bitmap, const rectangle &cliprect);
typedef delegate<void (uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y)> extend_tile_info_delegate;
typedef delegate<void (const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color)> extend_sprite_info_delegate;
typedef delegate<void (bitmap_rgb32 &bitmap, const rectangle &cliprect, int offs, int x, int y)> draw_bullet_delegate;
typedef delegate<void (bitmap_rgb32 &bitmap, const rectangle &cliprect)> draw_background_delegate;
void galaxian_videoram_w(offs_t offset, uint8_t data);
void galaxian_objram_w(offs_t offset, uint8_t data);
void galaxian_flip_screen_x_w(uint8_t data);
void galaxian_flip_screen_y_w(uint8_t data);
void galaxian_flip_screen_xy_w(uint8_t data);
void galaxian_stars_enable_w(uint8_t data);
void scramble_background_enable_w(uint8_t data);
void scramble_background_red_w(uint8_t data);
void scramble_background_green_w(uint8_t data);
void scramble_background_blue_w(uint8_t data);
void galaxian_gfxbank_w(offs_t offset, uint8_t data);
template <int N> DECLARE_READ_LINE_MEMBER(azurian_port_r);
void irq_enable_w(uint8_t data);
void start_lamp_w(offs_t offset, uint8_t data);
void coin_lock_w(uint8_t data);
void coin_count_0_w(uint8_t data);
void coin_count_1_w(uint8_t data);
uint8_t konami_ay8910_r(offs_t offset);
void konami_ay8910_w(offs_t offset, uint8_t data);
void konami_sound_filter_w(offs_t offset, uint8_t data);
uint8_t theend_ppi8255_r(offs_t offset);
void theend_ppi8255_w(offs_t offset, uint8_t data);
void theend_protection_w(uint8_t data);
uint8_t theend_protection_r();
template <int N> DECLARE_READ_LINE_MEMBER(theend_protection_alt_r);
void explorer_sound_control_w(uint8_t data);
uint8_t frogger_ppi8255_r(offs_t offset);
void frogger_ppi8255_w(offs_t offset, uint8_t data);
uint8_t frogger_ay8910_r(offs_t offset);
void frogger_ay8910_w(offs_t offset, uint8_t data);
IRQ_CALLBACK_MEMBER(froggermc_audiocpu_irq_ack);
void froggermc_sound_control_w(uint8_t data);
uint8_t frogf_ppi8255_r(offs_t offset);
void frogf_ppi8255_w(offs_t offset, uint8_t data);
uint8_t turtles_ppi8255_0_r(offs_t offset);
uint8_t turtles_ppi8255_1_r(offs_t offset);
void turtles_ppi8255_0_w(offs_t offset, uint8_t data);
void turtles_ppi8255_1_w(offs_t offset, uint8_t data);
uint8_t jumpbug_protection_r(offs_t offset);
void checkman_sound_command_w(uint8_t data);
uint8_t checkmaj_protection_r();
uint8_t dingo_3000_r();
uint8_t dingo_3035_r();
uint8_t dingoe_3001_r();
uint8_t froggeram_ppi8255_r(offs_t offset);
void froggeram_ppi8255_w(offs_t offset, uint8_t data);
void artic_gfxbank_w(uint8_t data);
void konami_sound_control_w(uint8_t data);
uint8_t konami_sound_timer_r();
void konami_portc_0_w(uint8_t data);
void konami_portc_1_w(uint8_t data);
void theend_coin_counter_w(uint8_t data);
uint8_t explorer_sound_latch_r();
uint8_t frogger_sound_timer_r();
void init_galaxian();
void init_nolock();
void init_azurian();
void init_batman2();
void init_highroll();
void init_frogg();
void init_mooncrst();
void init_mooncrsu();
void init_mooncrgx();
void init_moonqsr();
void init_pacmanbl();
void init_devilfshg();
void init_jumpbug();
void init_checkman();
void init_checkmaj();
void init_dingo();
void init_dingoe();
void init_kong();
void init_fantastc();
void init_timefgtr();
void init_theend();
void init_scramble();
void init_explorer();
void init_mandinga();
void init_mandingaeg();
void init_atlantis();
void init_scobra();
void init_scobrae();
void init_losttomb();
void init_frogger();
void init_froggermc();
void init_froggers();
void init_quaak();
void init_turtles();
void init_ckongs();
void init_ckonggx();
void init_anteater();
void init_anteateruk();
void init_superbon();
void init_calipso();
void init_ghostmun();
void init_froggrs();
void init_warofbugg();
void init_jungsub();
void init_mimonkey();
void init_mimonkeyb();
void init_victoryc();
TILE_GET_INFO_MEMBER(bg_get_tile_info);
void galaxian_palette(palette_device &palette);
void eagle_palette(palette_device &palette);
uint32_t screen_update_galaxian(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(vblank_interrupt_w);
TIMER_DEVICE_CALLBACK_MEMBER(checkmaj_irq0_gen);
TIMER_DEVICE_CALLBACK_MEMBER(scramble_stars_blink_timer);
TIMER_DEVICE_CALLBACK_MEMBER(timefgtr_scanline);
void state_save_register();
void sprites_draw(bitmap_rgb32 &bitmap, const rectangle &cliprect, const uint8_t *spritebase);
void bullets_draw(bitmap_rgb32 &bitmap, const rectangle &cliprect, const uint8_t *base);
void stars_init();
void stars_update_origin();
void stars_draw_row(bitmap_rgb32 &bitmap, int maxx, int y, uint32_t star_offs, uint8_t starmask);
void null_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect);
void galaxian_draw_stars(bitmap_rgb32 &bitmap, const rectangle &cliprect, int maxx);
void galaxian_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect);
void background_draw_colorsplit(bitmap_rgb32 &bitmap, const rectangle &cliprect, rgb_t color, int split, int split_flipped);
void scramble_draw_stars(bitmap_rgb32 &bitmap, const rectangle &cliprect, int maxx);
void scramble_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect);
void anteater_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect);
void jumpbug_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect);
void turtles_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect);
void frogger_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect);
inline void galaxian_draw_pixel(bitmap_rgb32 &bitmap, const rectangle &cliprect, int y, int x, rgb_t color);
void galaxian_draw_bullet(bitmap_rgb32 &bitmap, const rectangle &cliprect, int offs, int x, int y);
void mshuttle_draw_bullet(bitmap_rgb32 &bitmap, const rectangle &cliprect, int offs, int x, int y);
void scramble_draw_bullet(bitmap_rgb32 &bitmap, const rectangle &cliprect, int offs, int x, int y);
void theend_draw_bullet(bitmap_rgb32 &bitmap, const rectangle &cliprect, int offs, int x, int y);
void empty_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void empty_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void upper_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void upper_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void frogger_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void frogger_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void batman2_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void mooncrst_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void mooncrst_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void moonqsr_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void moonqsr_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void mshuttle_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void mshuttle_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void calipso_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void jumpbug_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void jumpbug_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void mimonkey_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void mimonkey_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void guttangt_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void decode_mooncrst(int length, uint8_t *dest);
void decode_checkman();
void decode_dingoe();
void decode_frogger_sound();
void decode_froggermc_sound();
void decode_frogger_gfx();
void decode_anteater_gfx();
void decode_losttomb_gfx();
void decode_superbon();
void decode_victoryc();
void common_init(
draw_bullet_func draw_bullet,
draw_background_func draw_background,
extend_tile_info_func extend_tile_info,
extend_sprite_info_func extend_sprite_info);
void galaxian_base(machine_config &config);
void sidam_bootleg_base(machine_config &config);
void konami_base(machine_config &config);
void konami_sound_1x_ay8910(machine_config &config);
void konami_sound_2x_ay8910(machine_config &config);
void scramble_base(machine_config &config);
void timefgtr(machine_config &config);
void moonqsr(machine_config &config);
void frogger(machine_config &config);
void anteatergg(machine_config &config);
void ozon1(machine_config &config);
void theend(machine_config &config);
void turtles(machine_config &config);
void fantastc(machine_config &config);
void jumpbug(machine_config &config);
void checkmaj(machine_config &config);
void pacmanbl(machine_config &config);
void quaak(machine_config &config);
void galaxian(machine_config &config);
void highroll(machine_config &config);
void devilfshg(machine_config &config);
void froggers(machine_config &config);
void froggervd(machine_config &config);
void anteateruk(machine_config &config);
void anteaterg(machine_config &config);
void anteater(machine_config &config);
void turpins(machine_config &config);
void explorer(machine_config &config);
void scramble(machine_config &config);
void scobra(machine_config &config);
void froggermc(machine_config &config);
void froggeram(machine_config &config);
void spactrai(machine_config &config);
void takeoff(machine_config &config);
void mooncrst(machine_config &config);
void eagle(machine_config &config);
void ckongs(machine_config &config);
void frogf(machine_config &config);
void amigo2(machine_config &config);
void checkman(machine_config &config);
void jungsub(machine_config &config);
void victoryc(machine_config &config);
void frogg(machine_config &config);
void mandingarf(machine_config &config);
void mandinka(machine_config &config);
void thepitm(machine_config &config);
void kong(machine_config &config);
void bongo(machine_config &config);
void scorpnmc(machine_config &config);
void ckongg(machine_config &config);
void ckongmc(machine_config &config);
void astroamb(machine_config &config);
void mimonkey(machine_config &config);
void mimonscr(machine_config &config);
void galartic(machine_config &config);
template <int Mask> CUSTOM_INPUT_MEMBER(ckongg_coinage_r);
template <int Mask> DECLARE_READ_LINE_MEMBER(ckongs_coinage_r);
protected:
// machine configuration helpers
void set_irq_line(int line) { m_irq_line = line; }
void set_bullets_base(int base) { m_bullets_base = base; }
void set_num_spritegens(int num) { m_numspritegens = num; }
void set_x_scale(uint8_t scale) { m_x_scale = scale; }
void set_h0_start(uint8_t start) { m_h0_start = start; }
void set_left_sprite_clip(uint8_t clip) { m_leftspriteclip = clip; }
void amigo2_map(address_map &map);
void anteaterg_map(address_map &map);
void anteatergg_map(address_map &map);
void anteateruk_map(address_map &map);
void astroamb_map(address_map &map);
void bongo_map(address_map &map);
void bongo_io_map(address_map &map);
void checkmaj_sound_map(address_map &map);
void checkman_sound_map(address_map &map);
void checkman_sound_portmap(address_map &map);
void ckongg_map(address_map &map);
void ckongg_map_base(address_map &map);
void ckongmc_map(address_map &map);
void ckongs_map(address_map &map);
void explorer_map(address_map &map);
void fantastc_map(address_map &map);
void frogf_map(address_map &map);
void frogg_map(address_map &map);
void frogger_map(address_map &map);
void froggervd_map(address_map &map);
void frogger_sound_map(address_map &map);
void frogger_sound_portmap(address_map &map);
void froggeram_map(address_map &map);
void froggermc_map(address_map &map);
void galartic_map(address_map &map);
void galaxian_map(address_map &map);
void galaxian_map_base(address_map &map);
void galaxian_map_discrete(address_map &map);
void highroll_map(address_map &map);
void jumpbug_map(address_map &map);
void jungsub_map(address_map &map);
void jungsub_io_map(address_map &map);
void konami_sound_map(address_map &map);
void konami_sound_portmap(address_map &map);
void kong_map(address_map &map);
void mandingarf_map(address_map &map);
void mandinka_map(address_map &map);
void mimonkey_map(address_map &map);
void mimonscr_map(address_map &map);
void mooncrst_map(address_map &map);
void mooncrst_map_base(address_map &map);
void mooncrst_map_discrete(address_map &map);
void moonqsr_decrypted_opcodes_map(address_map &map);
void ozon1_map(address_map &map);
void ozon1_io_map(address_map &map);
void scobra_map(address_map &map);
void scorpnmc_map(address_map &map);
void spactrai_map(address_map &map);
void takeoff_sound_map(address_map &map);
void takeoff_sound_portmap(address_map &map);
void theend_map(address_map &map);
void thepitm_map(address_map &map);
void turpins_map(address_map &map);
void turpins_sound_map(address_map &map);
void turtles_map(address_map &map);
void victoryc_map(address_map &map);
virtual void machine_start() override
{
m_lamps.resolve();
m_irq_enabled = 0;
}
virtual void video_start() override;
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_audiocpu;
optional_device_array<ay8910_device, 3> m_ay8910;
optional_device<ay8910_device> m_ay8910_cclimber;
optional_device_array<i8255_device, 3> m_ppi8255;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
optional_device<generic_latch_8_device> m_soundlatch;
optional_device<netlist_mame_sound_device> m_netlist;
optional_device_array<netlist_mame_logic_input_device, 12> m_filter_ctl;
optional_ioport m_ckong_coinage;
required_shared_ptr<uint8_t> m_spriteram;
required_shared_ptr<uint8_t> m_videoram;
optional_shared_ptr<uint8_t> m_decrypted_opcodes;
output_finder<2> m_lamps;
int m_bullets_base = 0x60;
int m_sprites_base = 0x40;
int m_numspritegens = 1;
uint16_t m_protection_state = 0;
uint8_t m_protection_result = 0;
uint8_t m_konami_sound_control = 0;
uint8_t m_irq_enabled = 0;
int m_irq_line = INPUT_LINE_NMI;
bool m_frogger_adjust = false;
uint8_t m_x_scale = GALAXIAN_XSCALE;
uint8_t m_h0_start = GALAXIAN_H0START;
bool m_sfx_adjust = false;
extend_tile_info_delegate m_extend_tile_info_ptr;
extend_sprite_info_delegate m_extend_sprite_info_ptr;
draw_bullet_delegate m_draw_bullet_ptr;
draw_background_delegate m_draw_background_ptr;
tilemap_t *m_bg_tilemap = nullptr;
uint8_t m_flipscreen_x = 0;
uint8_t m_flipscreen_y = 0;
uint8_t m_background_enable = 0;
uint8_t m_background_red = 0;
uint8_t m_background_green = 0;
uint8_t m_background_blue = 0;
uint32_t m_star_rng_origin = 0;
uint32_t m_star_rng_origin_frame = 0;
rgb_t m_star_color[64];
std::unique_ptr<uint8_t[]> m_stars;
uint8_t m_stars_enabled = 0;
uint8_t m_stars_blink_state = 0;
rgb_t m_bullet_color[8];
uint8_t m_gfxbank[5]{};
uint8_t m_leftspriteclip = 16;
};
class bagmanmc_state : public galaxian_state
{
public:
bagmanmc_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
{
}
void bagmanmc(machine_config &config);
void init_bagmanmc();
protected:
void bagmanmc_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void bagmanmc_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
private:
void bagmanmc_map(address_map &map);
void bagmanmc_io_map(address_map &map);
};
class gmgalax_state : public bagmanmc_state
{
public:
gmgalax_state(const machine_config &mconfig, device_type type, const char *tag)
: bagmanmc_state(mconfig, type, tag)
, m_glin(*this, "GLIN%u", 0U)
, m_gmin(*this, "GMIN%u", 0U)
, m_gamesel(*this, "GAMESEL")
, m_rombank(*this, "rombank")
{ }
void gmgalax(machine_config &config);
DECLARE_INPUT_CHANGED_MEMBER(game_changed);
template <int N> DECLARE_CUSTOM_INPUT_MEMBER(port_r);
void init_gmgalax();
protected:
virtual void machine_start() override;
private:
void gmgalax_map(address_map &map);
required_ioport_array<3> m_glin;
required_ioport_array<3> m_gmin;
required_ioport m_gamesel;
required_memory_bank m_rombank;
uint8_t m_selected_game;
};
class pisces_state : public galaxian_state
{
public:
pisces_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
{
}
void pisces(machine_config &config);
void porter(machine_config &config);
void skybase(machine_config &config);
void init_pisces();
protected:
void pisces_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void pisces_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
private:
void pisces_map(address_map &map);
void skybase_map(address_map &map);
void porter_map(address_map &map);
};
class fourplay_state : public pisces_state
{
public:
fourplay_state(const machine_config &mconfig, device_type type, const char *tag)
: pisces_state(mconfig, type, tag)
, m_rombank(*this, "rombank")
{
}
void fourplay(machine_config &config);
void init_fourplay();
private:
void fourplay_rombank_w(offs_t offset, uint8_t data);
void fourplay_map(address_map &map);
required_memory_bank m_rombank;
};
class mshuttle_state : public galaxian_state
{
public:
mshuttle_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
{
}
void mshuttle(machine_config &config);
void init_mshuttle();
void init_mshuttlj();
protected:
virtual void machine_start() override;
private:
void ay8910_cs_w(uint8_t data);
void ay8910_control_w(uint8_t data);
void ay8910_data_w(uint8_t data);
uint8_t ay8910_data_r();
void mshuttle_map(address_map &map);
void mshuttle_decrypted_opcodes_map(address_map &map);
void mshuttle_portmap(address_map &map);
void mshuttle_decode(const uint8_t convtable[8][16]);
uint8_t m_ay8910_cs = 0U;
};
class kingball_state : public galaxian_state
{
public:
kingball_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
, m_dac(*this, "dac")
, m_mux_port(*this, "FAKE")
{
}
DECLARE_READ_LINE_MEMBER(muxbit_r);
DECLARE_READ_LINE_MEMBER(noise_r);
void kingball(machine_config &config);
protected:
virtual void machine_start() override;
private:
void speech_dip_w(uint8_t data);
void sound1_w(uint8_t data);
void sound2_w(uint8_t data);
void dac_w(uint8_t data);
void kingball_map(address_map &map);
void kingball_sound_map(address_map &map);
void kingball_sound_portmap(address_map &map);
required_device<dac_byte_interface> m_dac;
required_ioport m_mux_port;
uint8_t m_speech_dip = 0;
uint8_t m_sound = 0;
};
class namenayo_state : public galaxian_state
{
public:
namenayo_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
, m_exattrram(*this, "extattrram")
{
}
void namenayo(machine_config &config);
void init_namenayo();
private:
void namenayo_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect);
void namenayo_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void namenayo_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void namenayo_map(address_map &map);
void namenayo_extattr_w(offs_t offset, uint8_t data);
void namenayo_unk_d800_w(uint8_t data);
required_shared_ptr<uint8_t> m_exattrram;
};
class tenspot_state : public galaxian_state
{
public:
tenspot_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
, m_game_dsw(*this, "IN2_GAME%u", 0U)
, m_mainbank(*this, "mainbank")
{
}
DECLARE_INPUT_CHANGED_MEMBER(tenspot_fake);
void tenspot(machine_config &config);
void init_tenspot();
protected:
virtual void machine_start() override;
private:
void unk_6000_w(uint8_t data);
void unk_8000_w(uint8_t data);
void unk_e000_w(uint8_t data);
uint8_t dsw_read();
void set_game_bank(int bank, bool invalidate_gfx);
void tenspot_map(address_map &map);
void tenspot_select_map(address_map &map);
required_ioport_array<10> m_game_dsw;
required_memory_bank m_mainbank;
uint8_t m_current_game = 0;
};
class zigzagb_state : public galaxian_state
{
public:
zigzagb_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
, m_rombanks(*this, "bank%u", 1U)
{
}
void zigzag(machine_config &config);
void init_zigzag();
protected:
virtual void machine_start() override;
private:
void bankswap_w(uint8_t data);
void ay8910_w(offs_t offset, uint8_t data);
void zigzag_map(address_map &map);
required_memory_bank_array<2> m_rombanks;
uint8_t m_ay8910_latch = 0U;
};
class videight_state : public galaxian_state
{
public:
videight_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
, m_rombank(*this, "rombank")
{
}
void videight(machine_config &config);
void init_videight();
//private:
void videight_rombank_w(offs_t offset, uint8_t data);
void videight_gfxbank_w(offs_t offset, uint8_t data);
void videight_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void videight_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
void videight_map(address_map &map);
required_memory_bank m_rombank;
};
class guttangt_state : public galaxian_state
{
public:
guttangt_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
, m_rombank(*this, "rombank")
{
}
void guttangt(machine_config &config);
void guttangts3(machine_config &config);
void init_guttangt();
void init_guttangts3();
private:
void guttangt_map(address_map &map);
void guttangts3_map(address_map &map);
void guttangt_rombank_w(uint8_t data);
optional_memory_bank m_rombank;
};
class zac_scorpion_state : public galaxian_state
{
public:
zac_scorpion_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
, m_digitalker(*this, "digitalker")
{
}
void scorpion(machine_config &config);
void init_scorpion();
private:
uint8_t ay8910_r(offs_t offset);
void ay8910_w(offs_t offset, uint8_t data);
uint8_t digitalker_intr_r();
void digitalker_control_w(uint8_t data);
uint8_t protection_r();
void protection_w(uint8_t data);
void scorpion_map(address_map &map);
void scorpion_sound_map(address_map &map);
void scorpion_sound_portmap(address_map &map);
required_device<digitalker_device> m_digitalker;
};
class nihon_sfx_state : public galaxian_state
{
public:
nihon_sfx_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
, m_audio2(*this, "audio2")
, m_dac(*this, "dac")
{
}
void sfx(machine_config &config);
void init_sfx();
protected:
virtual void machine_start() override;
uint8_t sample_io_r(offs_t offset);
void sample_io_w(offs_t offset, uint8_t data);
void sample_control_w(uint8_t data);
void sfx_draw_background(bitmap_rgb32 &bitmap, const rectangle &cliprect);
void sfx_draw_bullet(bitmap_rgb32 &bitmap, const rectangle &cliprect, int offs, int x, int y);
void sfx_map(address_map &map);
void sfx_sample_map(address_map &map);
void sfx_sample_portmap(address_map &map);
required_device<cpu_device> m_audio2;
required_device<dac_byte_interface> m_dac;
uint8_t m_sample_control = 0U;
};
class monsterz_state : public nihon_sfx_state
{
public:
monsterz_state(const machine_config& mconfig, device_type type, const char* tag)
: nihon_sfx_state(mconfig, type, tag)
, m_dac2(*this, "dac2")
{
}
void monsterz(machine_config& config);
void init_monsterz();
protected:
virtual void machine_start() override;
private:
void monsterz_map(address_map& map);
void monsterz_sound_map(address_map& map);
void monsterz_sound_portmap(address_map& map);
void monsterz_sample_map(address_map& map);
void monsterz_ay8910_w(offs_t offset, uint8_t data);
required_device<dac_byte_interface> m_dac2;
uint32_t m_monsterz_shift = 0U;
uint32_t m_monsterz_shift2 = 0U;
uint8_t m_monsterz_audio_portb = 0U;
uint8_t m_monsterz_sample_portc = 0U;
};
class moonwar_state : public galaxian_state
{
public:
moonwar_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
, m_dials(*this, "P%u_DIAL", 1U)
{
}
DECLARE_CUSTOM_INPUT_MEMBER(dial_r);
void moonwar(machine_config &config);
protected:
virtual void machine_start() override;
private:
void port_select_w(uint8_t data);
void moonwar_palette(palette_device &palette);
required_ioport_array<2> m_dials;
uint8_t m_port_select = 0U;
uint8_t m_direction[2]{};
uint8_t m_counter_74ls161[2]{};
};
class sbhoei_state : public galaxian_state
{
public:
sbhoei_state(const machine_config &mconfig, device_type type, const char *tag)
: galaxian_state(mconfig, type, tag)
, m_8039(*this, "i8039")
, m_sp0250(*this, "sp0250")
, m_soundbank(*this, "soundbank")
{
}
void sbhoei(machine_config &config);
void init_sbhoei();
void sbhoei_extend_tile_info(uint16_t *code, uint8_t *color, uint8_t attrib, uint8_t x, uint8_t y);
void sbhoei_extend_sprite_info(const uint8_t *base, uint8_t *sx, uint8_t *sy, uint8_t *flipx, uint8_t *flipy, uint16_t *code, uint8_t *color);
protected:
virtual void machine_start() override;
private:
void sbhoei_map(address_map &map);
void sbhoei_map_discrete(address_map &map);
void sbhoei_sound_map(address_map &map);
void sbhoei_sound_io_map(address_map &map);
void sbhoei_palette(palette_device &palette);
void sbhoei_soundlatch_w(uint8_t data);
void p2_w(uint8_t data);
uint8_t p1_r();
required_device<i8039_device> m_8039;
required_device<sp0250_device> m_sp0250;
required_memory_bank m_soundbank;
uint8_t m_p2 = 0;
};
#endif // MAME_INCLUDES_GALAXIAN_H
|