*evil laugh in a stich/experiment 626 voice*
God I love that movie (lilo & stich).
Anyway, Basic ODE suport added. While nothing complex it's pretty much a cleaned up port of AT ODE test. Still need to add more suport but over all still works quite well.
-- How to use --
. Choose your Bios (1.0 or 1.5 folder) and copy to your psp.
. Copy the Art folder to the root of the memory stick.
. Run App
. Press Square button ( up to 10 times at max ).
:P Yeah it's basic but hey it works.
-- Code Imp --
{
PhysicsODE myPWorld;
myPWorld.InitPhysicsEngine( 10 );
myPWorld.CreateObjectPlane( 0, 1, 0, 0 );
while(1)
{
if( input )
myPWorld.CreateObjectBox( 0, 30, -7, 0, 0, 0 );
myPWorld.UpdateObjects( 0.05 );
iloop = myPWorld.GetObjectCount();
for( i = 0; i < iloop; i++ )
{
ScePspFMatrix4 myMat;
myPWorld.GetWorldMatrix( &myMat, i );
myCube.Render( &myMat );
}
}
}