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

Suikoden Tierkreis

From The Cutting Room Floor
Jump to navigation Jump to search

Title Screen

Suikoden Tierkreis

Also known as: Gensō Suikoden Tierkreis (JP)
Developer: Konami[1]
Publisher: Konami[1]
Platforms: Nintendo DS
Released in JP: December 18, 2008[1]
Released in US: March 17, 2009[1]
Released in EU: March 12, 2009[1]


SourceIcon.png This game has uncompiled source code.
GraphicsIcon.png This game has unused graphics.


Graphics

Hmmm...
To do:
There are some other test graphics, but at first glance don't form anything comprehensible--figure them out!

rom/field/bgm.bin has a test graphic called test00:

Suikoden tierkreis-field-bgm-test00.NCER 0.png

There is also a debug font in the font directory.

Suikoden tierkreis-gd debugfont jp.png

Source Code and Scripts

Hmmm...
To do:
In rom/wad.bin there is another header file, waza.h, but it seems to be corrupted--can it be cleaned up/formatted in a way that it can be posted?

In the misc directory, there are two scripts that seem to have been used to pack some of the bins in the rom directory. There are two versions of each.

00do.bat 00do.bat~
@echo off
rem misc ディレクトリは雑多な素材の格納に使います。
T:\data\program\tools\dtarc.exe 01misc.dal -h arc_misc.h -c -o ..\rom\misc.bin
@echo off
rem misc ディレクトリは雑多な素材の格納に使います。
T:\data\program\tools\dtarc.exe 01misc.dal -h gm_arc_misc.h -c -o ..\rom\misc.bin
01misc.dal 01misc.dal~
DIRECTORY build_data\misc
FILE logo.gtd
FILE vxlogo.gtd
FILE title.gtd
FILE shop07.gtd
FILE license.gtd
DIRECTORY build_data\misc
FILE logo.gtd
FILE vxlogo.gtd
FILE title.gtd
FILE shop07.gtd

While the gm_arc_misc.h referenced in the deleted/old scripts is gone, the arc_misc.h header file remains.

#ifndef DTARC_HEADER_ARC_MISC
#define DTARC_HEADER_ARC_MISC

// T:/data/program/build_data/misc/logo.gtd
#define	AID_LOGO_GTD		0
// T:/data/program/build_data/misc/vxlogo.gtd
#define	AID_VXLOGO_GTD		1
// T:/data/program/build_data/misc/title.gtd
#define	AID_TITLE_GTD		2
// T:/data/program/build_data/misc/shop07.gtd
#define	AID_SHOP07_GTD		3
// T:/data/program/build_data/misc/license.gtd
#define	AID_LICENSE_GTD		4

#endif

References