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

Kowloon Youma Gakuenki

From The Cutting Room Floor
Jump to navigation Jump to search

Title Screen

Kowloon Youma Gakuenki

Developers: Atlus, Shout! Designworks
Publisher: Atlus
Platform: PlayStation 2
Released in JP: September 16, 2004


GraphicsIcon.png This game has unused graphics.
TextIcon.png This game has unused text.
DebugIcon.png This game has debugging material.


SAITAMA!!!!!!!!

Hmmm...
To do:
  • Two test videos, more Makefiles.
  • Another debug menu in function 0x0016C380 at spot 0x0016C6F0.

Debug Menu

Kowloon Youma Gakuenki - debugmenu.png

A simple debug menu can be enabled with the below code. This lets you select the day with L1 / R1 buttons or start in your room.

Master Code (Only needed for cheat devices)
9037B330 0C0DEC74

Press L3 For Debug Menu
D0757342 0000FFFD
00D4A884 00000009

This is best used in the continue menu.

(Source: Original TCRF research)

Unused Graphics

Kowloon-Youma-Gakuenki-Office-Panoramic-Test-1.png

Kowloon-Youma-Gakuenki-Office-Panoramic-Test-2.png

Kowloon-Youma-Gakuenki-Office-Panoramic-Test-3.png

Kowloon-Youma-Gakuenki-Office-Panoramic-Test-4.png

Panoramic shots of one of the developer's offices. The game uses a number of panoramic images in this same format, but these photographs are stored in DATA.CVM\TEST\IKEDA.


Kowloon-Youma-Gakuenki-Panoramic-Test-Subtext.png

Kowloon-Youma-Gakuenki-Panoramic-Test-1.png

Kowloon-Youma-Gakuenki-Panoramic-Test-2.png

Kowloon-Youma-Gakuenki-Panoramic-Test-3.png

Four additional test images for panoramic backgrounds. The top image is a subtext test and can be laid on top of the indoor panoramic shot to display a red box around what appears to be a person. These are also stored in DATA.CVM\TEST\IKEDA.


Kowloon-Youma-Gakuenki-MJ-Test.png

...an image of Michael Jackson on a tricycle. This texture is just named "test" internally. It has a model and animation, but neither can be viewed yet.


Kowloon-Youma-Gakuenki-Test-Saitama-00.png Kowloon-Youma-Gakuenki-Test-Saitama-01.png Kowloon-Youma-Gakuenki-Test-Saitama-02.png

Kowloon-Youma-Gakuenki-Test-Saitama-03.png Kowloon-Youma-Gakuenki-Test-Saitama-04.png Kowloon-Youma-Gakuenki-Test-Saitama-05.png

Kowloon-Youma-Gakuenki-Test-Saitama-06.png Kowloon-Youma-Gakuenki-Test-Saitama-07.png Kowloon-Youma-Gakuenki-Test-Saitama-08.png Kowloon-Youma-Gakuenki-Test-Saitama-09.png

A series of test images found in DATA.CVM\TEST\SASAKI\D_EMIMG00.BIN. This is a popular ascii art meme used on 2ch, which is based on the Japanese Liberal Democratic Party's logo. The text on the right is an increasing amount of the word "Saitama", also used in various ways with the 2ch meme.

(Source: Original TCRF research)

Unused Text

DATA.CVM\3D\ETC\MAKEFILE

# -*- mode: Makefile; coding: sjis; tab-width: 4 -*- =======================
#---------------------------------------------------------------------------
# $Id: Makefile,v 1.7 2004/06/16 13:09:50 kosaka Exp $
#===========================================================================

.SUFFIXES:
.SUFFIXES: .bin .bsp .png .tmx .txt .d

ECHO_OBJECT = @echo ----- $@ -----

PACKTOOL = pakfile.exe
RM = rm.exe
TLIST = ./tlist.exe
PUSH = cd
POP = popd.exe

SRCDIR = ./source
DSTDIR = ./pack
DEPEND_DIR = ./DEPEND

TARGET = pda.bin ASS.bin opening.bin jump.bin jumpr.bin


vpath %.txt	\
	$(SRCDIR)/pda		\
	$(SRCDIR)/ASS		\
	$(SRCDIR)/jump		\
	$(SRCDIR)/jumpr	\
	$(SRCDIR)/opening


vpath %.bin	\
	$(DSTDIR)

%.bin: %.txt
	$(ECHO_OBJECT)
	$(PACKTOOL) $< $(DSTDIR)/$@



all: $(TARGET)

clean:
	$(RM) -rf $(DSTDIR)/*.*
(Source: Original TCRF research)