boo/test/main.cpp

517 lines
17 KiB
C++
Raw Normal View History

2015-04-18 21:46:51 +00:00
#include <stdio.h>
#include <math.h>
2015-08-18 22:43:30 +00:00
#include <boo/boo.hpp>
#include <boo/graphicsdev/GL.hpp>
2016-03-27 00:48:16 +00:00
#include <boo/graphicsdev/D3D.hpp>
#include <boo/graphicsdev/Metal.hpp>
2015-10-30 06:26:02 +00:00
#include <thread>
#include <mutex>
#include <condition_variable>
2016-03-04 23:02:18 +00:00
#include "logvisor/logvisor.hpp"
2015-04-18 21:46:51 +00:00
2015-04-29 10:24:39 +00:00
namespace boo
{
2015-08-18 19:40:26 +00:00
class DolphinSmashAdapterCallback : public IDolphinSmashAdapterCallback
2015-04-24 00:24:15 +00:00
{
void controllerConnected(unsigned idx, EDolphinControllerType)
2015-04-24 00:24:15 +00:00
{
printf("CONTROLLER %u CONNECTED\n", idx);
}
void controllerDisconnected(unsigned idx, EDolphinControllerType)
2015-04-24 00:24:15 +00:00
{
printf("CONTROLLER %u DISCONNECTED\n", idx);
}
void controllerUpdate(unsigned idx, EDolphinControllerType,
2015-08-18 19:40:26 +00:00
const DolphinControllerState& state)
2015-04-24 00:24:15 +00:00
{
printf("CONTROLLER %u UPDATE %d %d\n", idx, state.m_leftStick[0], state.m_leftStick[1]);
2015-05-15 01:16:36 +00:00
printf(" %d %d\n", state.m_rightStick[0], state.m_rightStick[1]);
2015-11-05 04:31:30 +00:00
printf(" %d %d\n", state.m_analogTriggers[0], state.m_analogTriggers[1]);
2015-05-15 01:16:36 +00:00
}
};
2015-08-18 23:38:53 +00:00
class DualshockPadCallback : public IDualshockPadCallback
2015-05-15 01:16:36 +00:00
{
void controllerDisconnected()
{
printf("CONTROLLER DISCONNECTED\n");
}
2015-08-18 23:38:53 +00:00
void controllerUpdate(const DualshockPadState& state)
2015-05-15 01:16:36 +00:00
{
static time_t timeTotal;
static time_t lastTime = 0;
timeTotal = time(NULL);
time_t timeDif = timeTotal - lastTime;
/*
if (timeDif >= .15)
{
uint8_t led = ctrl->getLED();
led *= 2;
if (led > 0x10)
led = 2;
ctrl->setRawLED(led);
lastTime = timeTotal;
}
*/
if (state.m_psButtonState)
{
if (timeDif >= 1) // wait 30 seconds before issuing another rumble event
{
2015-11-21 01:12:22 +00:00
ctrl->startRumble(EDualshockMotor::Left);
ctrl->startRumble(EDualshockMotor::Right, 100);
2015-05-15 01:16:36 +00:00
lastTime = timeTotal;
}
}
/*
else
ctrl->stopRumble(DS3_MOTOR_RIGHT | DS3_MOTOR_LEFT);*/
2015-05-22 00:35:46 +00:00
2015-05-15 01:16:36 +00:00
printf("CONTROLLER UPDATE %d %d\n", state.m_leftStick[0], state.m_leftStick[1]);
printf(" %d %d\n", state.m_rightStick[0], state.m_rightStick[1]);
printf(" %f %f %f\n", state.accPitch, state.accYaw, state.gyroZ);
2015-04-24 00:24:15 +00:00
}
};
2015-08-18 19:40:26 +00:00
class TestDeviceFinder : public DeviceFinder
2015-04-22 21:48:23 +00:00
{
2015-08-18 19:40:26 +00:00
DolphinSmashAdapter* smashAdapter = NULL;
DualshockPad* ds3 = nullptr;
2015-08-18 19:40:26 +00:00
DolphinSmashAdapterCallback m_cb;
DualshockPadCallback m_ds3CB;
2015-04-22 21:48:23 +00:00
public:
2015-08-18 19:40:26 +00:00
TestDeviceFinder()
: DeviceFinder({typeid(DolphinSmashAdapter)})
2015-04-22 21:48:23 +00:00
{}
2015-08-18 19:40:26 +00:00
void deviceConnected(DeviceToken& tok)
2015-04-22 21:48:23 +00:00
{
2015-08-18 19:40:26 +00:00
smashAdapter = dynamic_cast<DolphinSmashAdapter*>(tok.openAndGetDevice());
2015-05-15 01:16:36 +00:00
if (smashAdapter)
{
smashAdapter->setCallback(&m_cb);
smashAdapter->startRumble(0);
return;
}
ds3 = dynamic_cast<DualshockPad*>(tok.openAndGetDevice());
2015-05-15 01:16:36 +00:00
if (ds3)
{
ds3->setCallback(&m_ds3CB);
2015-11-21 01:12:22 +00:00
ds3->setLED(EDualshockLED::LED_1);
2015-05-15 01:16:36 +00:00
}
2015-04-22 21:48:23 +00:00
}
2015-08-18 19:40:26 +00:00
void deviceDisconnected(DeviceToken&, DeviceBase* device)
2015-04-22 21:48:23 +00:00
{
if (smashAdapter == device)
{
delete smashAdapter;
smashAdapter = NULL;
}
2015-05-15 01:16:36 +00:00
if (ds3 == device)
{
delete ds3;
ds3 = nullptr;
}
2015-04-22 21:48:23 +00:00
}
};
2015-05-04 04:28:07 +00:00
2015-08-18 19:40:26 +00:00
struct CTestWindowCallback : IWindowCallback
2015-05-04 04:28:07 +00:00
{
2015-11-05 07:30:40 +00:00
bool m_fullscreenToggleRequested = false;
SWindowRect m_lastRect;
bool m_rectDirty = false;
bool m_windowInvalid = false;
2015-11-02 09:31:06 +00:00
void resized(const SWindowRect& rect)
{
m_lastRect = rect;
m_rectDirty = true;
fprintf(stderr, "Resized %d, %d (%d, %d)\n", rect.size[0], rect.size[1], rect.location[0], rect.location[1]);
}
2015-11-02 09:31:06 +00:00
2015-05-12 09:38:37 +00:00
void mouseDown(const SWindowCoord& coord, EMouseButton button, EModifierKey mods)
2015-05-04 04:28:07 +00:00
{
2015-11-21 01:12:22 +00:00
fprintf(stderr, "Mouse Down %d (%f,%f)\n", int(button), coord.norm[0], coord.norm[1]);
2015-05-12 09:38:37 +00:00
}
void mouseUp(const SWindowCoord& coord, EMouseButton button, EModifierKey mods)
{
2015-11-21 01:12:22 +00:00
fprintf(stderr, "Mouse Up %d (%f,%f)\n", int(button), coord.norm[0], coord.norm[1]);
2015-05-12 09:38:37 +00:00
}
void mouseMove(const SWindowCoord& coord)
{
2015-11-02 09:31:06 +00:00
fprintf(stderr, "Mouse Move (%f,%f)\n", coord.norm[0], coord.norm[1]);
2015-05-12 09:38:37 +00:00
}
void mouseEnter(const SWindowCoord &coord)
{
fprintf(stderr, "Mouse entered (%f,%f)\n", coord.norm[0], coord.norm[1]);
}
void mouseLeave(const SWindowCoord &coord)
{
fprintf(stderr, "Mouse left (%f,%f)\n", coord.norm[0], coord.norm[1]);
}
2015-05-12 09:38:37 +00:00
void scroll(const SWindowCoord& coord, const SScrollDelta& scroll)
{
2015-11-05 07:30:40 +00:00
//fprintf(stderr, "Mouse Scroll (%f,%f) (%f,%f)\n", coord.norm[0], coord.norm[1], scroll.delta[0], scroll.delta[1]);
2015-05-04 04:28:07 +00:00
}
2015-05-13 08:51:18 +00:00
void touchDown(const STouchCoord& coord, uintptr_t tid)
2015-05-04 04:28:07 +00:00
{
2015-05-13 08:51:18 +00:00
//fprintf(stderr, "Touch Down %16lX (%f,%f)\n", tid, coord.coord[0], coord.coord[1]);
2015-05-12 09:38:37 +00:00
}
2015-05-13 08:51:18 +00:00
void touchUp(const STouchCoord& coord, uintptr_t tid)
2015-05-12 09:38:37 +00:00
{
2015-05-13 08:51:18 +00:00
//fprintf(stderr, "Touch Up %16lX (%f,%f)\n", tid, coord.coord[0], coord.coord[1]);
2015-05-12 09:38:37 +00:00
}
2015-05-13 08:51:18 +00:00
void touchMove(const STouchCoord& coord, uintptr_t tid)
2015-05-12 09:38:37 +00:00
{
2015-05-13 08:51:18 +00:00
//fprintf(stderr, "Touch Move %16lX (%f,%f)\n", tid, coord.coord[0], coord.coord[1]);
2015-05-12 09:38:37 +00:00
}
2015-05-04 04:28:07 +00:00
2015-05-12 09:38:37 +00:00
void charKeyDown(unsigned long charCode, EModifierKey mods, bool isRepeat)
{
2015-05-04 04:28:07 +00:00
2015-05-12 09:38:37 +00:00
}
void charKeyUp(unsigned long charCode, EModifierKey mods)
{
2015-05-04 04:28:07 +00:00
2015-05-12 09:38:37 +00:00
}
void specialKeyDown(ESpecialKey key, EModifierKey mods, bool isRepeat)
{
2015-11-21 01:12:22 +00:00
if (key == ESpecialKey::Enter && (mods & EModifierKey::Alt) != EModifierKey::None)
2015-11-05 07:30:40 +00:00
m_fullscreenToggleRequested = true;
2015-05-12 09:38:37 +00:00
}
void specialKeyUp(ESpecialKey key, EModifierKey mods)
2015-05-04 04:28:07 +00:00
{
2015-05-12 09:38:37 +00:00
2015-05-04 04:28:07 +00:00
}
2015-05-12 09:38:37 +00:00
void modKeyDown(EModifierKey mod, bool isRepeat)
{
2015-05-04 04:28:07 +00:00
2015-05-12 09:38:37 +00:00
}
void modKeyUp(EModifierKey mod)
{
2015-05-04 04:28:07 +00:00
2015-05-12 09:38:37 +00:00
}
2015-05-04 04:28:07 +00:00
void windowMoved(const SWindowRect& rect)
{
fprintf(stderr, "Moved %d, %d (%d, %d)\n", rect.size[0], rect.size[1], rect.location[0], rect.location[1]);
}
void destroyed()
{
m_windowInvalid = true;
}
2015-05-12 09:38:37 +00:00
};
2015-08-18 19:40:26 +00:00
struct TestApplicationCallback : IApplicationCallback
2015-05-04 04:28:07 +00:00
{
2015-11-01 00:06:56 +00:00
IWindow* mainWindow;
2015-08-18 19:40:26 +00:00
boo::TestDeviceFinder devFinder;
2015-05-12 09:38:37 +00:00
CTestWindowCallback windowCallback;
bool running = true;
2015-10-30 06:26:02 +00:00
2015-11-03 04:27:56 +00:00
IShaderDataBinding* m_binding = nullptr;
ITextureR* m_renderTarget = nullptr;
2015-10-30 06:26:02 +00:00
std::mutex m_mt;
std::condition_variable m_cv;
std::mutex m_initmt;
std::condition_variable m_initcv;
2015-10-30 06:26:02 +00:00
static void LoaderProc(TestApplicationCallback* self)
{
std::unique_lock<std::mutex> lk(self->m_initmt);
2015-11-05 00:00:29 +00:00
IGraphicsDataFactory* factory = self->mainWindow->getLoadContextDataFactory();
GraphicsDataToken data = factory->commitTransaction([&](IGraphicsDataFactory::Context& ctx) -> bool
2015-10-30 06:26:02 +00:00
{
/* Create render target */
int x, y, w, h;
self->mainWindow->getWindowFrame(x, y, w, h);
self->m_renderTarget = ctx.newRenderTexture(w, h, false, false);
/* Make Tri-strip VBO */
struct Vert
2015-10-30 06:26:02 +00:00
{
float pos[3];
float uv[2];
};
static const Vert quad[4] =
{
{{0.5,0.5},{1.0,1.0}},
{{-0.5,0.5},{0.0,1.0}},
{{0.5,-0.5},{1.0,0.0}},
{{-0.5,-0.5},{0.0,0.0}}
};
IGraphicsBuffer* vbo =
ctx.newStaticBuffer(BufferUse::Vertex, quad, sizeof(Vert), 4);
/* Make vertex format */
VertexElementDescriptor descs[2] =
{
{vbo, nullptr, VertexSemantic::Position3},
{vbo, nullptr, VertexSemantic::UV2}
};
IVertexFormat* vfmt = ctx.newVertexFormat(2, descs);
/* Make ramp texture */
using Pixel = uint8_t[4];
static Pixel tex[256][256];
for (int i=0 ; i<256 ; ++i)
for (int j=0 ; j<256 ; ++j)
{
tex[i][j][0] = i;
tex[i][j][1] = j;
tex[i][j][2] = 0;
tex[i][j][3] = 0xff;
}
ITexture* texture =
ctx.newStaticTexture(256, 256, 1, TextureFormat::RGBA8, tex, 256*256*4);
/* Make shader pipeline */
IShaderPipeline* pipeline = nullptr;
if (ctx.platform() == IGraphicsDataFactory::Platform::OGL)
{
GLDataFactory::Context& glF = dynamic_cast<GLDataFactory::Context&>(ctx);
static const char* VS =
"#version 330\n"
"layout(location=0) in vec3 in_pos;\n"
"layout(location=1) in vec2 in_uv;\n"
"out vec2 out_uv;\n"
"void main()\n"
"{\n"
" gl_Position = vec4(in_pos, 1.0);\n"
" out_uv = in_uv;\n"
"}\n";
2015-10-30 06:26:02 +00:00
static const char* FS =
"#version 330\n"
BOO_GLSL_BINDING_HEAD
"precision highp float;\n"
"TBINDING0 uniform sampler2D texs[1];\n"
"layout(location=0) out vec4 out_frag;\n"
"in vec2 out_uv;\n"
"void main()\n"
"{\n"
" out_frag = texture(texs[0], out_uv);\n"
"}\n";
2015-11-05 00:00:29 +00:00
pipeline = glF.newShaderPipeline(VS, FS, 1, "texs", 0, nullptr,
BlendFactor::One, BlendFactor::Zero,
Primitive::TriStrips, true, true, false);
}
#if _WIN32
else if (ctx.platform() == IGraphicsDataFactory::Platform::D3D12 ||
ctx.platform() == IGraphicsDataFactory::Platform::D3D11)
{
2016-03-30 20:42:36 +00:00
ID3DDataFactory::Context& d3dF = dynamic_cast<ID3DDataFactory::Context&>(ctx);
static const char* VS =
"struct VertData {float3 in_pos : POSITION; float2 in_uv : UV;};\n"
"struct VertToFrag {float4 out_pos : SV_Position; float2 out_uv : UV;};\n"
"VertToFrag main(in VertData v)\n"
"{\n"
" VertToFrag retval;\n"
" retval.out_pos = float4(v.in_pos, 1.0);\n"
" retval.out_uv = v.in_uv;\n"
" return retval;\n"
"}\n";
static const char* PS =
"SamplerState samp : register(s0);\n"
"Texture2D tex : register(t0);\n"
"struct VertToFrag {float4 out_pos : SV_Position; float2 out_uv : UV;};\n"
"float4 main(in VertToFrag d) : SV_Target0\n"
"{\n"
" return tex.Sample(samp, d.out_uv);\n"
"}\n";
ComPtr<ID3DBlob> vsCompile;
ComPtr<ID3DBlob> psCompile;
ComPtr<ID3DBlob> cachedPipeline;
2016-03-30 20:42:36 +00:00
pipeline = d3dF.newShaderPipeline(VS, PS, vsCompile, psCompile, cachedPipeline, vfmt,
BlendFactor::One, BlendFactor::Zero, Primitive::TriStrips,
true, true, false);
}
#elif BOO_HAS_METAL
else if (ctx.platform() == IGraphicsDataFactory::Platform::Metal)
{
2016-03-30 20:42:36 +00:00
MetalDataFactory::Context& metalF = dynamic_cast<MetalDataFactory::Context&>(ctx);
static const char* VS =
"#include <metal_stdlib>\n"
"using namespace metal;\n"
"struct VertData {float3 in_pos [[ attribute(0) ]]; float2 in_uv [[ attribute(1) ]];};\n"
"struct VertToFrag {float4 out_pos [[ position ]]; float2 out_uv;};\n"
"vertex VertToFrag vmain(VertData v [[ stage_in ]])\n"
2015-11-05 00:00:29 +00:00
"{\n"
" VertToFrag retval;\n"
" retval.out_pos = float4(v.in_pos, 1.0);\n"
" retval.out_uv = v.in_uv;\n"
" return retval;\n"
"}\n";
static const char* FS =
"#include <metal_stdlib>\n"
"using namespace metal;\n"
"constexpr sampler samp(address::repeat);\n"
"struct VertToFrag {float4 out_pos [[ position ]]; float2 out_uv;};\n"
"fragment float4 fmain(VertToFrag d [[ stage_in ]], texture2d<float> tex [[ texture(0) ]])\n"
2015-11-05 00:00:29 +00:00
"{\n"
" return tex.sample(samp, d.out_uv);\n"
2015-11-05 00:00:29 +00:00
"}\n";
2016-03-30 20:42:36 +00:00
pipeline = metalF.newShaderPipeline(VS, FS, vfmt, 1,
BlendFactor::One, BlendFactor::Zero, Primitive::TriStrips,
true, true, false);
}
2015-11-05 00:00:29 +00:00
#endif
/* Make shader data binding */
self->m_binding =
2016-04-04 06:13:11 +00:00
ctx.newShaderDataBinding(pipeline, vfmt, vbo, nullptr, nullptr, 0, nullptr, nullptr, 1, &texture);
2016-03-30 20:42:36 +00:00
return true;
});
/* Return control to client */
lk.unlock();
self->m_initcv.notify_one();
2015-10-30 06:26:02 +00:00
/* Wait for exit */
while (self->running)
{
2015-11-21 02:16:15 +00:00
std::unique_lock<std::mutex> lk(self->m_mt);
self->m_cv.wait(lk);
if (!self->running)
break;
2015-10-30 06:26:02 +00:00
}
}
int appMain(IApplication* app)
2015-04-18 23:12:22 +00:00
{
2016-02-24 03:11:58 +00:00
mainWindow = app->newWindow(_S("YAY!"), 1);
2015-05-12 09:38:37 +00:00
mainWindow->setCallback(&windowCallback);
2015-05-06 00:50:57 +00:00
mainWindow->showWindow();
windowCallback.m_lastRect = mainWindow->getWindowFrame();
2015-10-31 19:21:23 +00:00
//mainWindow->setFullscreen(true);
2015-05-06 00:50:57 +00:00
devFinder.startScanning();
2015-10-30 06:26:02 +00:00
IGraphicsCommandQueue* gfxQ = mainWindow->getCommandQueue();
2015-11-04 01:02:05 +00:00
std::unique_lock<std::mutex> lk(m_initmt);
2015-10-30 06:26:02 +00:00
std::thread loaderThread(LoaderProc, this);
m_initcv.wait(lk);
2015-10-30 06:26:02 +00:00
size_t frameIdx = 0;
2015-10-31 06:39:11 +00:00
size_t lastCheck = 0;
while (running)
{
if (windowCallback.m_windowInvalid)
{
running = false;
break;
}
mainWindow->waitForRetrace();
2015-11-05 00:00:29 +00:00
if (windowCallback.m_rectDirty)
{
gfxQ->resizeRenderTexture(m_renderTarget, windowCallback.m_lastRect.size[0], windowCallback.m_lastRect.size[1]);
windowCallback.m_rectDirty = false;
}
2015-11-05 00:00:29 +00:00
2015-11-05 07:30:40 +00:00
if (windowCallback.m_fullscreenToggleRequested)
{
mainWindow->setFullscreen(!mainWindow->isFullscreen());
windowCallback.m_fullscreenToggleRequested = false;
}
2015-11-05 00:00:29 +00:00
gfxQ->setRenderTarget(m_renderTarget);
SWindowRect r = windowCallback.m_lastRect;
r.location[0] = 0;
r.location[1] = 0;
gfxQ->setViewport(r);
gfxQ->setScissor(r);
float rgba[] = {sinf(frameIdx / 60.0), cosf(frameIdx / 60.0), 0.0, 1.0};
gfxQ->setClearColor(rgba);
gfxQ->clearTarget();
2015-11-05 00:00:29 +00:00
gfxQ->setShaderDataBinding(m_binding);
gfxQ->draw(0, 4);
gfxQ->resolveDisplay(m_renderTarget);
gfxQ->execute();
2015-11-02 09:31:06 +00:00
//fprintf(stderr, "%zu\n", frameIdx);
2015-10-31 19:21:23 +00:00
++frameIdx;
2015-10-31 06:39:11 +00:00
if ((frameIdx - lastCheck) > 100)
{
lastCheck = frameIdx;
2015-10-31 19:21:23 +00:00
//mainWindow->setFullscreen(!mainWindow->isFullscreen());
2015-10-31 06:39:11 +00:00
}
}
gfxQ->stopRenderer();
2015-10-30 06:26:02 +00:00
m_cv.notify_one();
loaderThread.join();
return 0;
2015-04-18 23:12:22 +00:00
}
2015-05-06 00:50:57 +00:00
void appQuitting(IApplication*)
2015-05-04 04:28:07 +00:00
{
running = false;
2015-05-06 00:50:57 +00:00
}
2015-08-31 03:40:58 +00:00
void appFilesOpen(IApplication*, const std::vector<SystemString>& paths)
2015-05-15 01:16:36 +00:00
{
2015-05-13 22:21:13 +00:00
fprintf(stderr, "OPENING: ");
2015-08-31 03:40:58 +00:00
for (const SystemString& path : paths)
{
#if _WIN32
fwprintf(stderr, L"%s ", path.c_str());
#else
2015-05-13 22:21:13 +00:00
fprintf(stderr, "%s ", path.c_str());
2015-08-31 03:40:58 +00:00
#endif
}
2015-05-13 22:21:13 +00:00
fprintf(stderr, "\n");
2015-05-15 01:16:36 +00:00
}
2015-05-06 00:50:57 +00:00
};
2015-05-04 04:28:07 +00:00
}
2015-11-21 01:12:22 +00:00
#if _WIN32
int wmain(int argc, const boo::SystemChar** argv)
#else
2015-11-06 03:20:58 +00:00
int main(int argc, const boo::SystemChar** argv)
2015-11-21 01:12:22 +00:00
#endif
2015-11-05 00:00:29 +00:00
{
2016-03-04 23:02:18 +00:00
logvisor::RegisterConsoleLogger();
2015-11-05 00:00:29 +00:00
boo::TestApplicationCallback appCb;
2015-11-21 01:12:22 +00:00
int ret = ApplicationRun(boo::IApplication::EPlatformType::Auto,
2016-03-04 23:02:18 +00:00
appCb, _S("boo"), _S("boo"), argc, argv);
2015-11-05 00:00:29 +00:00
printf("IM DYING!!\n");
return ret;
}
2015-11-06 03:20:58 +00:00
#if _WIN32
int APIENTRY wWinMain(HINSTANCE hInstance, HINSTANCE, LPWSTR lpCmdLine, int)
2015-11-05 00:00:29 +00:00
{
2015-11-06 03:20:58 +00:00
int argc = 0;
const boo::SystemChar** argv = (const wchar_t**)(CommandLineToArgvW(lpCmdLine, &argc));
static boo::SystemChar selfPath[1024];
GetModuleFileNameW(nullptr, selfPath, 1024);
static const boo::SystemChar* booArgv[32] = {};
booArgv[0] = selfPath;
for (int i=0 ; i<argc ; ++i)
booArgv[i+1] = argv[i];
2015-11-06 03:20:58 +00:00
2016-03-04 23:02:18 +00:00
logvisor::CreateWin32Console();
2015-11-21 01:12:22 +00:00
return wmain(argc+1, booArgv);
2015-11-05 00:00:29 +00:00
}
#endif