Skip to content
/ YOC Public

Yaroze Offset Calculator - Calculates the offsets and generates 2 files for you. By Elliott Lee 15 March 1998

Notifications You must be signed in to change notification settings

gwald/YOC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

YOC

Yaroze Offset Calculator - Calculates the offsets and generates asset loading files for you. (c) 3/1998 Elliott Lee.

Maintained here: https://github.com/gwald/YOC


Net Yaroze used a tool called Siocons which would upload assets and executables to the Net Yaroze black PlayStation.

YOC easily creates and maintains this for you, plus a bit more.

Usage (all parameters are mandatory):

YOC HexStartAddr  MyProject.yoc YOC

IE:

YOC 0x80091000 proj.yoc YOC

The HexStartAddr is the base start address to be used for offset calculations, it can start with 0x or end in h. Depending on where you load your executable (set via linking), will depend what you set this to. IE: If you load your executable high, close to the end of the 2MB RAM, your assets will be loaded from the start of available RAM which is after the Net Yaroze LibPS library, 0x80090000. Or you can link your executable at the start of RAM (0x80090000) and load your assets after the executable, like the example above.

The MyProject.yoc filename must be be alphanum only. It is a text file where each non-blank line is in the format: :

C_DEFINE_constant_name    data_path_and_filename  

C_DEFINE_constant_name is the identifier name (#define) to be put in the header file. It can only use underscores and alphanumeric characters. Dont start it with a number, your program wont compile.

data_path_and_filename is the path and filename to the file to include. It can only use underscore, dot, forward or back slash and alphanumeric characters. The optional executable must be on the last line and without a constant_name value, ie just the file_name. Comment out lines with the first character being "#". Note - YOC tries to handle case differences but it will not find directories or files for you.

IE: CAT.YOC

#This is a comment
MODEL_ADDR base.tmd  
MDFDATAVTX base.vdf   
MDFDATANRM base.ndf   
WAVEADDR cat.dat  
TEXTURE_ADDR textures.tim
MAIN.EXE

The last parameter, YOC is your project name (single word, recommend using YOC) and will be used for generating output files, see below. You probably won't need all of them, just ignore them.


The output files created are:

The YOC.sio is created for Net Yaroze Siocons batch loading file or used with yarexe to create a psx.exe. Each line will retain the path you used for the *MyProject.yoc.

The YOC-vscode.sio is the created like above but for vscode with PSX.DEV, see Template help in https://github.com/gwald/psyq_to_netyaroze

The YOC.dat is all the files loaded into a single binary file.

The YOC_dat.sio is created for Net Yaroze Siocons batch loading the single dat file instead of loading all the files individually.

The YOC_vscode_dat.sio is the created like above but for vscode, see Template help in https://github.com/gwald/psyq_to_netyaroze

The YOC.h is the created C header file with #defines from the *MyProject.yoc.

** WARNING! THE FILES ABOVE WILL BE AUTOMATICALLY CREATED AND OVERWRITTING IF ALREADY EXISTING!! **

Versions:

**V4 rewrite with many various outputs including PSX.DEV support ** https://github.com/gwald/psyq_to_netyaroze

**V3 Fixed bugs, added fcaseopen ** Fixed bugs, added fcaseopen.c by OneSadCookie for linux path and filename DOS support

**V2 ported to TCC/gcc ** Might have to change _fcloseall to fcloseall to compile in your GCC. Add more infor to header file and the executable line option, still WIP

**V1 Original 1998 release ** Yaroze Offset Calculator By Elliott Lee 15 March 1998 Original DOS code & win32 executable. Original source code yoc.c by Elliott Lee 15 March 1998 Written for Borland Turbo C++ 3.0 but executable here was compiled with TCC with -m32 flag.

About

Yaroze Offset Calculator - Calculates the offsets and generates 2 files for you. By Elliott Lee 15 March 1998

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages