Collection of PsyQ basic examples NOT using libgs
Go to file
2021-07-24 11:49:54 +02:00
hello_2pads Better syntax for ot access, as per @nicolasnoble suggestion 2021-07-23 17:24:06 +02:00
hello_bs Better syntax for ot access, as per @nicolasnoble suggestion 2021-07-23 17:24:06 +02:00
hello_cd Add STR playback example 2021-07-23 19:45:11 +02:00
hello_cdda Fix CDDA volume 2021-07-23 20:47:11 +02:00
hello_cube Better syntax for ot access, as per @nicolasnoble suggestion 2021-07-23 17:24:06 +02:00
hello_cubetex Better syntax for ot access, as per @nicolasnoble suggestion 2021-07-23 17:24:06 +02:00
hello_gte_opti Better syntax for ot access, as per @nicolasnoble suggestion 2021-07-23 17:24:06 +02:00
hello_light Better syntax for ot access, as per @nicolasnoble suggestion 2021-07-23 17:24:06 +02:00
hello_multivag Move SetDispMask() to init() 2021-07-22 10:40:41 +02:00
hello_pad Better syntax for ot access, as per @nicolasnoble suggestion 2021-07-23 17:24:06 +02:00
hello_poly Move primbuff to .bss 2021-07-24 11:41:57 +02:00
hello_poly_ft Move primbuff to .bss 2021-07-24 11:41:57 +02:00
hello_poly_fun Move primbuff to .bss 2021-07-24 11:41:57 +02:00
hello_poly_gt Move primbuff to .bss 2021-07-24 11:41:57 +02:00
hello_poly_gt_tw Move primbuff to .bss 2021-07-24 11:41:57 +02:00
hello_poly_inline Move primbuff to .bss 2021-07-24 11:41:57 +02:00
hello_poly_subdiv Better syntax for ot access, as per @nicolasnoble suggestion 2021-07-23 17:24:06 +02:00
hello_sio Move SetDispMask() to init() 2021-07-22 10:40:41 +02:00
hello_sprt Move primbuff to .bss 2021-07-24 11:41:57 +02:00
hello_str Fix buffer pointers 2021-07-23 20:07:53 +02:00
hello_tile Move primbuff to .bss 2021-07-24 11:41:57 +02:00
hello_vag Move SetDispMask() to init() 2021-07-22 10:40:41 +02:00
hello_world Move SetDispMask() to init() 2021-07-22 10:40:41 +02:00
hello_xa Add precisions about XA channel number/cd speed link 2021-07-24 11:09:42 +02:00
includes Move to better file structure 2021-07-10 13:36:57 +02:00
thirdparty Move to better file structure 2021-07-10 13:36:57 +02:00
TIM Add RGB bpp link 2021-07-24 11:49:54 +02:00
VAG Add some infos about VAG file format 2021-07-20 18:44:27 +02:00
.gitmodules Move to better file structure 2021-07-10 13:36:57 +02:00
common.mk Use a better copy/pasta rule for objcopying stuff. 2021-07-17 21:12:23 -07:00
LICENSE Initial commit 2020-12-21 17:26:40 +01:00
Makefile Add STR playback example 2021-07-23 20:13:38 +02:00
README.md Update upcoming examples sections 2021-07-20 20:15:45 +02:00

Nolibgs Hello Worlds !

3D power ! 3D power ! 3D power !

So you want to begin developping on the original PSX but don't know where to start ?

This repo is destined to host a bunch of simple examples, each describing how to do one thing.

The code here will be using Nugget + PsyQ, the "Official" Sony SDK but with a modern MIPS toolchain.

We will not be using libGS, the Extended Graphics Library for the graphic stuff...

Instead we'll try to devise methods to reproduce libgs functions. This will not necessarly be more efficient, but we'll learn a lot more stuff !

Installation

We'll keep things simple for now. If you want to read about more methods to get things up and running, see the wiki's Installation methods section.

Windows

MIPS toolchain setup

  1. Download the MIPS toolchain here : http://static.grumpycoder.net/pixel/mips/g++-mipsel-none-elf-10.3.0.zip
  2. Unzip anywhere on your hard-drive and add the bin folder to your $PATH.
  3. Test everything is fine by launching a command prompt and typing mipsel-none-elf-gcc.exe --version. If you get a message like mipsel-none-gnu-gcc (GCC) 10.3.0, then it's working !

Nugget + PsyQ setup

  1. Download the PsyQ converted libraries here : http://psx.arthus.net/sdk/Psy-Q/psyq-4_7-converted-light.zip
  2. Download this repository's release : https://github.com/ABelliqueux/nolibgs_hello_worlds/releases/download/v0.1/nolibgs_hello_worlds.zip
  3. Unzip the nolibgs_hello_worlds.zip file anywhere on your hard-drive. We'll use C:\psxdev\ as an example
  4. Unzip the psyq-4_7-converted-light.zip file in C:\psxdev\psyq. You should now have C:\psxdev\psyq\include and C:\psxdev\psyq\lib.
  5. Test everything is working by launching a command prompt, change to the C:\psxdev\ directory with the following command: cd C:\psxdev\, then type make and hit enter.
    By default, this should build the hello_world example, and you should now have a hello_world.ps-exe file in C:\psxdev\hello_world. This a PSX executable that can be run in an emulator like pcsx-redux.

Linux

Install your distribution's MIPS toolchain

In a terminal :

On Debian derivatives (Ubuntu, Mint...) :

sudo apt-get install gcc-mipsel-linux-gnu g++-mipsel-linux-gnu binutils-mipsel-linux-gnu

On Arch derivatives (Manjaro), the mipsel environment can be installed from AUR : cross-mipsel-linux-gnu-binutils and cross-mipsel-linux-gnu-gcc using your AURhelper of choice:

trizen -S cross-mipsel-linux-gnu-binutils cross-mipsel-linux-gnu-gcc

Nugget + PsyQ setup

Let's do it all on the CLI !

  1. Install the git client :
sudo apt-get install git
  1. Clone this repository :
git clone https://github.com/ABelliqueux/nolibgs_hello_worlds.git --recursive
  1. Change to the repo's directory and get the PsyQ converted libraries:
cd nolibgs_hello_worlds
wget http://psx.arthus.net/sdk/Psy-Q/psyq-4_7-converted-light.zip
unzip psyq-4_7-converted-light.zip
  1. Try your setup :
make

By default, this should build the hello_world example, and you should now have a hello_world.ps-exe file in ./hello_world/. This a PSX executable that can be run in an emulator like pcsx-redux.

MacOS

A brew installation script can be found here..

Compilation

In a terminal, cd to your psxdev setup directory and type make all to build all examples in their respective directories.

Alternatively, you can use make example_name to only build that example, i.e : make hello_poly.

If you want to remove all the files generated by the compilation process, type make clean.

Upcoming examples

  • hello_poly_subdiv (polygon subdivision)
  • hello_rsd (rsd format)
  • Hello multi XA

Links and Doc

Credits, thanks, hugs

Everything here was learnt from some more talented persons, mainly but not excluding others that hang around on the psxdev discord Nicolas Noble, Lameguy64, NDR008, Jaby smoll seamonstah, danhans42, rama, sickle, paul, squaresoft74, and lot mores !