blender_io_export_psx_mesh/README.md

149 lines
4.8 KiB
Markdown
Raw Normal View History

2020-12-29 15:19:56 +01:00
![Pic or it didn't happen](blender-psx.jpg)
2020-12-27 17:44:19 +01:00
2021-04-03 17:06:09 +02:00
# Blender PSX Level export
2020-12-26 19:11:11 +01:00
2021-01-04 19:23:57 +01:00
Blender <= 2.79c plugin to export gouraud shaded, UV textured PSX meshes in a scene to a C file.
2020-12-27 14:15:58 +01:00
2021-04-03 17:06:09 +02:00
![3d scene](gif/3d.gif)
![3d scene](gif/precalc.gif)
![3d scene](gif/push.gif)
![3d scene](gif/sprite.gif)
![3d scene](gif/vertexanim.gif)
## Features
**Be warned this is WIP** !
### Plugin
* Export UV textured models
* Export vertex painted models
* Export camera positions for in game use
* Export vertex animations
* Export up to 3 light sources
* Export pre-rendered backgrounds for in-game use (8bpp and 4bpp)
### "Engine"
* Very basic physics / collision detection
* Constrained camera trajectory
* Orbital camera mode
* Basic Spatial partitioning
* Portal based camera angle switch
## Planned
* Fix and improve all the things !
* Wall collisions
2021-01-04 19:23:57 +01:00
Specifically, it generates a C file containing for each mesh in the scene:
2020-12-27 14:15:58 +01:00
* an array of SVECTOR containing the vertices coordinates
* an array of SVECTOR containing the normals
2020-12-29 15:32:14 +01:00
* an array of SVECTOR containing the UV coordinates of the texture
2020-12-27 17:36:47 +01:00
* an array of CVECTOR containing the color of each vertex
2020-12-27 14:15:58 +01:00
* an array of int that describe the relation between the tri meshes
* a TMESH struct to ease access to those arrays
2020-12-29 15:31:05 +01:00
* declarations of the binary in memory
* a TIM_IMAGE struct ready to host the image data
2020-12-27 14:15:58 +01:00
2021-01-04 19:23:57 +01:00
A few usefull stuff for manipulating the mesh :
* a MATRIX that will hold the mesh tranformations
* a VECTOR holding the object's location in world coordinates
* a SVECTOR holding the object's rotation in PSX angle units (1 == 4096)
* a flag isPrism for a pseudo-refraction effect. If 1, texture is the framebuffer draw area ( __WIP__ )
* a long holding p, the depth-cueing interpolation value used by the PSX
For easy access to those, a MESH struct is defined as :
```c
2021-04-03 17:06:09 +02:00
typedef struct MESH {
2021-01-04 19:23:57 +01:00
TMESH * tmesh;
2021-04-03 17:06:09 +02:00
PRIM * index;
2021-01-04 19:23:57 +01:00
TIM_IMAGE * tim;
2021-04-03 17:06:09 +02:00
unsigned long * tim_data;
2021-01-04 19:23:57 +01:00
MATRIX * mat;
VECTOR * pos;
SVECTOR * rot;
2021-04-03 17:06:09 +02:00
short * isRigidBody;
short * isStaticBody;
2021-01-04 19:23:57 +01:00
short * isPrism;
2021-04-03 17:06:09 +02:00
short * isAnim;
short * isActor;
short * isLevel;
short * isBG;
short * isSprite;
2021-01-04 19:23:57 +01:00
long * p;
2021-04-03 17:06:09 +02:00
long * OTz;
BODY * body;
VANIM * anim;
struct NODE * node;
VECTOR pos2D;
2021-01-04 19:23:57 +01:00
} MESH;
```
## TMESH struct :
2020-12-27 14:15:58 +01:00
From `libgte.h` :
```c
typedef struct {
SVECTOR *v; /*shared vertices*/
SVECTOR *n; /*shared normals*/
SVECTOR *u; /*shared texture addresses*/
CVECTOR *c; /*shared colors*/
u_long len; /*mesh length(=#vertex)*/
} TMESH;
```
2020-12-26 19:11:11 +01:00
2020-12-27 17:36:47 +01:00
# Install the plugin
2020-12-26 19:11:11 +01:00
2021-04-03 17:06:09 +02:00
Just `git clone` this repo in the addons folder of blender 2.79 :
2020-12-26 19:11:11 +01:00
2020-12-26 19:43:07 +01:00
On Linux, that's :
2020-12-26 19:11:11 +01:00
2020-12-26 19:43:07 +01:00
`~/.config/blender/2.79/scripts/addons`
2020-12-29 15:31:05 +01:00
# Steps to convert your mesh
2020-12-26 19:43:07 +01:00
2020-12-27 12:30:11 +01:00
1. You must first triangulate your mesh (manually or via the modifier).
2020-12-27 13:23:06 +01:00
2020-12-27 12:30:11 +01:00
2. When your model is ready, you can then vertex paint it. If you don't, the vertices colors will default to white.
2020-12-27 12:34:00 +01:00
2020-12-27 12:30:11 +01:00
* If you modify your geometry *after* vertex painting, the plugin will faile to export the mesh. This is because the vertex color data is set to 0 each time you modify your geometry.
2020-12-26 19:43:07 +01:00
2020-12-29 15:31:05 +01:00
3. You can UV unwrap your model and apply a texture. The provided code will look for a tim file corresponding to the name of the image file you use in blender in the 'TIM' folder.
E.g : You use a 'cube.png' file in blender, the psx code will look for a 'cube.tim' file in ./TIM
* If needed, edit the `primdraw.c` file , lines 29 and 30, to reflect the number of tris you want to be able to draw ( Max seems to be ~750 in NTSC, ~910 in PAL )
2020-12-27 13:23:06 +01:00
```c
#define OT_LENGTH 2048 // Maximum number of OT entries
2020-12-27 18:11:41 +01:00
#define MAX_PRIMS 1024 // Maximum number of POLY_GT3 primitives
2020-12-27 13:23:06 +01:00
```
seem to be safe values.
2020-12-26 19:43:07 +01:00
2020-12-27 17:36:47 +01:00
# Compiling
2020-12-26 19:43:07 +01:00
2020-12-27 17:36:47 +01:00
The provided `Makefile` uses the [Nugget+PsyQ setup](https://github.com/ABelliqueux/nolibgs_hello_worlds#setting-up-the-sdk--modern-gcc--psyq-aka-nuggetpsyq).
2020-12-26 19:43:07 +01:00
2020-12-29 15:31:05 +01:00
1. Clone this repo in `(...)/pcsx-redux/src/mips/`
2. Enter the `blender_io_export_psx_mesh` folder
3. Install the plugin in blender, then open `cubetex.blend`
4. Export as 'cube.c'
5. Type `Make`
You can use [img2tim](https://github.com/Lameguy64/img2tim) to convert your blender texture in a tim file.
2020-12-26 19:43:07 +01:00
# Credits
2020-12-27 17:36:47 +01:00
Based on the [code](https://pastebin.com/suU9DigB) provided by TheDukeOfZill, 04-2014, on http://www.psxdev.net/forum/viewtopic.php?f=64&t=537#p4088
2020-12-26 19:43:07 +01:00
2020-12-27 17:36:47 +01:00
PSX code based on [example](http://psx.arthus.net/code/primdraw.7z) by [Lameguy64](https://github.com/Lameguy64)
2021-04-03 17:06:09 +02:00
pngquant : [https://github.com/kornelski/pngquant](https://github.com/kornelski/pngquant)
img2tim : [https://github.com/Lameguy64/img2tim](https://github.com/Lameguy64/img2tim)