2013-09-01 14:27:21 +00:00
|
|
|
/*
|
|
|
|
** main.cpp
|
|
|
|
**
|
|
|
|
** This file is part of mkxp.
|
|
|
|
**
|
|
|
|
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
|
|
|
|
**
|
|
|
|
** mkxp is free software: you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 2 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** mkxp is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with mkxp. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-10-14 00:22:34 +00:00
|
|
|
#include "glew.h"
|
2013-11-30 11:00:11 +00:00
|
|
|
#include <alc.h>
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-10-13 21:21:34 +00:00
|
|
|
#include "SDL.h"
|
|
|
|
#include "SDL_image.h"
|
|
|
|
#include "SDL_ttf.h"
|
2013-11-30 11:00:11 +00:00
|
|
|
#include <SDL_sound.h>
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
#include "sharedstate.h"
|
2013-09-01 14:27:21 +00:00
|
|
|
#include "eventthread.h"
|
|
|
|
#include "debuglogger.h"
|
|
|
|
|
|
|
|
#include "binding.h"
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
static const char *reqExt[] =
|
|
|
|
{
|
2013-09-02 09:12:45 +00:00
|
|
|
"GL_ARB_fragment_shader",
|
|
|
|
"GL_ARB_shader_objects",
|
|
|
|
"GL_ARB_vertex_shader",
|
|
|
|
"GL_ARB_shading_language_100",
|
|
|
|
"GL_ARB_texture_non_power_of_two",
|
|
|
|
"GL_ARB_vertex_array_object",
|
|
|
|
"GL_ARB_vertex_buffer_object",
|
|
|
|
"GL_EXT_bgra",
|
|
|
|
"GL_EXT_blend_func_separate",
|
|
|
|
"GL_EXT_blend_subtract",
|
2013-09-06 12:21:14 +00:00
|
|
|
"GL_EXT_framebuffer_object",
|
2013-09-02 09:12:45 +00:00
|
|
|
"GL_EXT_framebuffer_blit",
|
|
|
|
0
|
2013-09-01 14:27:21 +00:00
|
|
|
};
|
|
|
|
|
2013-10-15 17:35:03 +00:00
|
|
|
static void
|
|
|
|
rgssThreadError(RGSSThreadData *rtData, const QByteArray &msg)
|
|
|
|
{
|
|
|
|
rtData->rgssErrorMsg = msg;
|
|
|
|
rtData->ethread->requestTerminate();
|
|
|
|
rtData->rqTermAck = true;
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:19:52 +00:00
|
|
|
static inline const char*
|
|
|
|
glGetStringInt(GLenum name)
|
|
|
|
{
|
|
|
|
return (const char*) glGetString(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
printGLInfo()
|
|
|
|
{
|
|
|
|
qDebug() << "GL Vendor :" << glGetStringInt(GL_VENDOR);
|
|
|
|
qDebug() << "GL Renderer :" << glGetStringInt(GL_RENDERER);
|
|
|
|
qDebug() << "GL Version :" << glGetStringInt(GL_VERSION);
|
|
|
|
qDebug() << "GLSL Version :" << glGetStringInt(GL_SHADING_LANGUAGE_VERSION);
|
|
|
|
}
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
int rgssThreadFun(void *userdata)
|
|
|
|
{
|
|
|
|
RGSSThreadData *threadData = static_cast<RGSSThreadData*>(userdata);
|
|
|
|
SDL_Window *win = threadData->window;
|
2013-11-30 11:00:11 +00:00
|
|
|
SDL_GLContext glCtx;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
/* Setup GL context */
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
|
|
|
|
|
|
|
|
if (threadData->config.debugMode)
|
|
|
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_FLAGS, SDL_GL_CONTEXT_DEBUG_FLAG);
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
glCtx = SDL_GL_CreateContext(win);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
if (!glCtx)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-10-15 17:35:03 +00:00
|
|
|
rgssThreadError(threadData, QByteArray("Error creating context: ") + SDL_GetError());
|
2013-09-01 14:27:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (glewInit() != GLEW_OK)
|
|
|
|
{
|
2013-10-15 17:35:03 +00:00
|
|
|
rgssThreadError(threadData, "Error initializing glew");
|
2013-11-30 11:00:11 +00:00
|
|
|
SDL_GL_DeleteContext(glCtx);
|
2013-09-01 14:27:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-14 01:03:09 +00:00
|
|
|
glClearColor(0, 0, 0, 1);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
SDL_GL_SwapWindow(win);
|
|
|
|
|
2013-10-15 21:19:52 +00:00
|
|
|
printGLInfo();
|
|
|
|
|
2013-10-15 17:35:03 +00:00
|
|
|
/* Check for required GL version */
|
|
|
|
if (!GLEW_VERSION_2_0)
|
|
|
|
{
|
|
|
|
rgssThreadError(threadData, "At least OpenGL 2.0 is required");
|
2013-11-30 11:00:11 +00:00
|
|
|
SDL_GL_DeleteContext(glCtx);
|
2013-10-15 17:35:03 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
/* Check for required GL extensions */
|
2013-09-04 09:31:35 +00:00
|
|
|
for (int i = 0; reqExt[i]; ++i)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-09-04 09:31:35 +00:00
|
|
|
if (!glewIsSupported(reqExt[i]))
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-10-15 17:35:03 +00:00
|
|
|
rgssThreadError(threadData, QByteArray("Required GL extension \"")
|
|
|
|
+ reqExt[i] + "\" not present");
|
2013-11-30 11:00:11 +00:00
|
|
|
SDL_GL_DeleteContext(glCtx);
|
2013-09-01 14:27:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDL_GL_SetSwapInterval(threadData->config.vsync ? 1 : 0);
|
|
|
|
|
|
|
|
DebugLogger dLogger;
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
/* Setup AL context */
|
|
|
|
ALCdevice *alcDev = alcOpenDevice(0);
|
|
|
|
|
|
|
|
if (!alcDev)
|
|
|
|
{
|
|
|
|
rgssThreadError(threadData, "Error opening OpenAL device");
|
|
|
|
SDL_GL_DeleteContext(glCtx);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ALCcontext *alcCtx = alcCreateContext(alcDev, 0);
|
|
|
|
|
|
|
|
if (!alcCtx)
|
|
|
|
{
|
|
|
|
rgssThreadError(threadData, "Error creating OpenAL context");
|
|
|
|
alcCloseDevice(alcDev);
|
|
|
|
SDL_GL_DeleteContext(glCtx);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
alcMakeContextCurrent(alcCtx);
|
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
SharedState::initInstance(threadData);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
/* Start script execution */
|
|
|
|
scriptBinding->execute();
|
|
|
|
|
2013-09-22 22:02:28 +00:00
|
|
|
threadData->rqTermAck = true;
|
2013-09-01 14:27:21 +00:00
|
|
|
threadData->ethread->requestTerminate();
|
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
SharedState::finiInstance();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
alcDestroyContext(alcCtx);
|
|
|
|
alcCloseDevice(alcDev);
|
|
|
|
|
|
|
|
SDL_GL_DeleteContext(glCtx);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int, char *argv[])
|
|
|
|
{
|
|
|
|
Config conf;
|
|
|
|
|
|
|
|
conf.read();
|
|
|
|
conf.readGameINI();
|
|
|
|
|
2013-10-13 21:07:40 +00:00
|
|
|
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) < 0)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
|
|
|
qDebug() << "Error initializing SDL:" << SDL_GetError();
|
2013-11-30 11:00:11 +00:00
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-02 11:50:58 +00:00
|
|
|
int imgFlags = IMG_INIT_PNG | IMG_INIT_JPG;
|
|
|
|
if (IMG_Init(imgFlags) != imgFlags)
|
|
|
|
{
|
|
|
|
qDebug() << "Error initializing SDL_image:" << SDL_GetError();
|
|
|
|
SDL_Quit();
|
2013-11-30 11:00:11 +00:00
|
|
|
|
2013-10-02 11:50:58 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TTF_Init() < 0)
|
|
|
|
{
|
|
|
|
qDebug() << "Error initializing SDL_ttf:" << SDL_GetError();
|
|
|
|
IMG_Quit();
|
|
|
|
SDL_Quit();
|
2013-11-30 11:00:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Sound_Init() == 0)
|
|
|
|
{
|
|
|
|
qDebug() << "Error initializing SDL_sound:" << Sound_GetError();
|
|
|
|
TTF_Quit();
|
|
|
|
IMG_Quit();
|
|
|
|
SDL_Quit();
|
|
|
|
|
2013-10-02 11:50:58 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
SDL_SetHint("SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS", "0");
|
|
|
|
|
|
|
|
SDL_Window *win;
|
|
|
|
Uint32 winFlags = SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN;
|
|
|
|
|
|
|
|
if (conf.winResizable)
|
|
|
|
winFlags |= SDL_WINDOW_RESIZABLE;
|
|
|
|
if (conf.fullscreen)
|
|
|
|
winFlags |= SDL_WINDOW_FULLSCREEN_DESKTOP;
|
|
|
|
|
|
|
|
win = SDL_CreateWindow(conf.game.title.constData(),
|
|
|
|
SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED,
|
|
|
|
conf.defScreenW, conf.defScreenH, winFlags);
|
|
|
|
|
|
|
|
if (!win)
|
|
|
|
{
|
|
|
|
qDebug() << "Error creating window";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
EventThread eventThread;
|
|
|
|
RGSSThreadData rtData(&eventThread, argv[0], win);
|
|
|
|
rtData.config = conf;
|
|
|
|
|
|
|
|
/* Start RGSS thread */
|
|
|
|
SDL_Thread *rgssThread =
|
|
|
|
SDL_CreateThread(rgssThreadFun, "rgss", &rtData);
|
|
|
|
|
|
|
|
/* Start event processing */
|
|
|
|
eventThread.process(rtData);
|
|
|
|
|
|
|
|
/* Request RGSS thread to stop */
|
|
|
|
rtData.rqTerm = true;
|
|
|
|
|
|
|
|
/* Wait for RGSS thread response */
|
|
|
|
for (int i = 0; i < 1000; ++i)
|
|
|
|
{
|
|
|
|
/* We can stop waiting when the request was ack'd */
|
|
|
|
if (rtData.rqTermAck)
|
|
|
|
{
|
|
|
|
qDebug() << "RGSS thread ack'd request after" << i*10 << "ms";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Give RGSS thread some time to respond */
|
|
|
|
SDL_Delay(10);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If RGSS thread ack'd request, wait for it to shutdown,
|
|
|
|
* otherwise abandon hope and just end the process as is. */
|
|
|
|
if (rtData.rqTermAck)
|
|
|
|
SDL_WaitThread(rgssThread, 0);
|
|
|
|
else
|
|
|
|
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, conf.game.title.constData(),
|
|
|
|
"The RGSS script seems to be stuck and mkxp will now force quit", win);
|
|
|
|
|
|
|
|
if (!rtData.rgssErrorMsg.isEmpty())
|
|
|
|
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, conf.game.title.constData(),
|
|
|
|
rtData.rgssErrorMsg.constData(), win);
|
|
|
|
|
|
|
|
/* Clean up any remainin events */
|
|
|
|
eventThread.cleanup();
|
|
|
|
|
|
|
|
qDebug() << "Shutting down.";
|
|
|
|
|
|
|
|
SDL_DestroyWindow(win);
|
|
|
|
|
2013-11-30 11:00:11 +00:00
|
|
|
Sound_Quit();
|
2013-09-01 14:27:21 +00:00
|
|
|
TTF_Quit();
|
|
|
|
IMG_Quit();
|
|
|
|
SDL_Quit();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|