If you appreciate the work done within the wiki, please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!
This article has a talk page!

Galaxian (NES)

From The Cutting Room Floor
Jump to navigation Jump to search

Title Screen

Galaxian

Developer: Namco
Publisher: Namco
Platforms: NES, Famicom Disk System
Released internationally: June 18, 2020 (Namco Museum Archives)
Released in JP: September 7, 1984 (Famicom), July 20, 1990 (FDS)


CopyrightIcon.png This game has hidden developer credits.
MusicIcon.png This game has unused music.


Galaxian features Galaxians attacking Galaxians and Galaxians (flagships). Nobody really knows who's who, other than your mission is ostensibly to destroy aliens.

Notable for being possibly the tiniest NES game ever released; with only a glib 16 kilobytes housed in its cartridge. The fact there's stuff in here is quite impressive!

Programmer's Credit

Appears at the very beginning of the ROM:

COPR.1984 NAMCO 
HARUHISA UDAGAWA

HARUHISA UDAGAWA is used as the soft-reset RAM check (at $105) as well. Haruhisa Udagawa seems to have been a programmer for Namco, as his name appears in some other games such as Lupin Sansei: Pandora no Isan.

(Source: Cah4e3)

Music Player

This is a real exciting screen, here.

Despite Galaxian being housed in only 16 kilobytes of space, there was still enough room in both ROMs to add a music player.

There are two methods to enable this player. For the first one, reset the game 44 times, hold A + B on Controller 2, and reset again. For the second one, reset the game only 10 times, then shout 4 times to the microphone on the Famicom Controller 2.

The reset counter is located at the RAM address $115. There are a total of five songs accessible by this method, all embedded in the CHR data.

Song data is highlighted in blue. Numbers indicate the order they play in.

The music player uses RAM set as the sprite DMA area, so as the song plays a sprite will scroll down the screen, indicating the current playing notes and the progress through the song. A 1 will randomly flip while going across the screen, but this has no impact on anything.

Resetting before the song fully ends will increment a counter in RAM, with the next song playing after another 45 resets. When using the second method, to reach the second melody you need only 34 resets, because the first 10 you already did. If at any time the song is allowed to finish fully, the game will reset back to the title screen. After another 256 resets from when the player is enabled, the game is reset to the title screen.

Some of the tracks are next to graphics that are actually used, and will play garbage before or after the music is played.

At least one of the tracks is a recreation of another song, but it's unknown what most of them are.

"Ma reine de Saba", composed by Michel Laurent.

"Nausicaä Requiem", a song from the film Nausicaä of the Valley of the Wind which was released the same year as Galaxian, composed by Joe Hisaishi.

The last song is not a complete one, but can be binded to the first song as an intro.

Note that some of the music is played from the garbage graphic data rather than the right beginning, and keeps playing garbage after the music is over. These clips have been cut down to remove said garbage.

(Source: Cah4e3)

Sound Effect Weirdness

The player's shoot sound is a simple sound effect. The generating routine consists of two parts. The first one setting once the pulse and noise channel frequencies, duration and envelope. Judging from the code, the second part should be called with every sync and change the noise channel duration period in time. But for unknown reasons the duration counter in the second generating routine is set to 0 in any cases after the first execution, so this routine is never called again.

If we modify the second generating routine to actually count the duration periods in time, we'll get the different shot sound. Remains unknown, if it were modified to be more like in the final version, or just by accidentally programming mistake changed from the desired version. Below is the original and the fixed versions of this sound effect. There are no fixes in this sound effect made in the FDS version of this game released 6 years later, the routines are identical in both versions.

Original Fixed