2017-08-09 23:42:33 +01:00
|
|
|
#include <rw.h>
|
|
|
|
#include "skeleton.h"
|
|
|
|
|
2020-04-16 22:09:47 +01:00
|
|
|
|
2017-08-09 23:42:33 +01:00
|
|
|
namespace sk {
|
|
|
|
|
|
|
|
Globals globals;
|
2017-08-23 11:21:23 +01:00
|
|
|
Args args;
|
2017-08-09 23:42:33 +01:00
|
|
|
|
2020-04-16 22:09:47 +01:00
|
|
|
|
2017-08-09 23:42:33 +01:00
|
|
|
bool
|
|
|
|
InitRW(void)
|
|
|
|
{
|
|
|
|
if(!rw::Engine::init())
|
|
|
|
return false;
|
|
|
|
if(AppEventHandler(sk::PLUGINATTACH, nil) == EVENTERROR)
|
|
|
|
return false;
|
2020-04-15 08:47:43 +01:00
|
|
|
if(!rw::Engine::open(&engineOpenParams))
|
2017-08-09 23:42:33 +01:00
|
|
|
return false;
|
2020-04-15 08:47:43 +01:00
|
|
|
|
|
|
|
SubSystemInfo info;
|
|
|
|
int i, n;
|
|
|
|
n = Engine::getNumSubSystems();
|
|
|
|
for(i = 0; i < n; i++)
|
|
|
|
if(Engine::getSubSystemInfo(&info, i))
|
|
|
|
printf("subsystem: %s\n", info.name);
|
2020-04-16 22:09:47 +01:00
|
|
|
Engine::setSubSystem(n-1);
|
2020-04-15 08:47:43 +01:00
|
|
|
|
|
|
|
int want = -1;
|
|
|
|
VideoMode mode;
|
|
|
|
n = Engine::getNumVideoModes();
|
|
|
|
for(i = 0; i < n; i++)
|
|
|
|
if(Engine::getVideoModeInfo(&mode, i)){
|
2020-04-16 22:09:47 +01:00
|
|
|
// if(mode.width == 640 && mode.height == 480 && mode.depth == 32)
|
|
|
|
if(mode.width == 1920 && mode.height == 1080 && mode.depth == 32)
|
2020-04-15 08:47:43 +01:00
|
|
|
want = i;
|
|
|
|
printf("mode: %dx%dx%d %d\n", mode.width, mode.height, mode.depth, mode.flags);
|
|
|
|
}
|
|
|
|
// if(want >= 0) Engine::setVideoMode(want);
|
|
|
|
Engine::getVideoModeInfo(&mode, Engine::getCurrentVideoMode());
|
|
|
|
|
|
|
|
if(mode.flags & VIDEOMODEEXCLUSIVE){
|
|
|
|
globals.width = mode.width;
|
|
|
|
globals.height = mode.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!rw::Engine::start())
|
2017-08-09 23:42:33 +01:00
|
|
|
return false;
|
|
|
|
|
2017-08-27 16:13:10 +01:00
|
|
|
rw::Image::setSearchPath("./");
|
2017-08-09 23:42:33 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TerminateRW(void)
|
|
|
|
{
|
|
|
|
// TODO: delete all tex dicts
|
|
|
|
rw::Engine::stop();
|
|
|
|
rw::Engine::close();
|
|
|
|
rw::Engine::term();
|
|
|
|
}
|
|
|
|
|
2017-10-21 21:21:36 +01:00
|
|
|
Camera*
|
|
|
|
CameraCreate(int32 width, int32 height, bool32 z)
|
|
|
|
{
|
|
|
|
Camera *cam;
|
|
|
|
cam = Camera::create();
|
|
|
|
cam->setFrame(Frame::create());
|
|
|
|
cam->frameBuffer = Raster::create(width, height, 0, Raster::CAMERA);
|
|
|
|
cam->zBuffer = Raster::create(width, height, 0, Raster::ZBUFFER);
|
|
|
|
return cam;
|
|
|
|
}
|
|
|
|
|
2017-10-20 21:38:28 +01:00
|
|
|
void
|
|
|
|
CameraSize(Camera *cam, Rect *r)
|
|
|
|
{
|
|
|
|
if(cam->frameBuffer){
|
|
|
|
cam->frameBuffer->destroy();
|
|
|
|
cam->frameBuffer = nil;
|
|
|
|
}
|
|
|
|
if(cam->zBuffer){
|
|
|
|
cam->zBuffer->destroy();
|
|
|
|
cam->zBuffer = nil;
|
|
|
|
}
|
|
|
|
cam->frameBuffer = Raster::create(r->w, r->h, 0, Raster::CAMERA);
|
|
|
|
cam->zBuffer = Raster::create(r->w, r->h, 0, Raster::ZBUFFER);
|
|
|
|
}
|
|
|
|
|
2017-08-09 23:42:33 +01:00
|
|
|
EventStatus
|
|
|
|
EventHandler(Event e, void *param)
|
|
|
|
{
|
|
|
|
EventStatus s;
|
|
|
|
s = AppEventHandler(e, param);
|
|
|
|
if(e == QUIT){
|
|
|
|
globals.quit = 1;
|
|
|
|
return EVENTPROCESSED;
|
|
|
|
}
|
|
|
|
if(s == EVENTNOTPROCESSED)
|
|
|
|
switch(e){
|
|
|
|
case RWINITIALIZE:
|
|
|
|
return InitRW() ? EVENTPROCESSED : EVENTERROR;
|
|
|
|
case RWTERMINATE:
|
|
|
|
TerminateRW();
|
|
|
|
return EVENTPROCESSED;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|