2002-10-12 11:37:38 +00:00
|
|
|
/**
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* This program 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. The Blender
|
|
|
|
* Foundation also sells licenses for use in proprietary software under
|
|
|
|
* the Blender License. See http://www.blender.org/BL/ for information
|
|
|
|
* about this.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
*
|
|
|
|
* ***** END GPL/BL DUAL LICENSE BLOCK *****
|
|
|
|
* Blender's Ketsji startpoint
|
|
|
|
*/
|
|
|
|
|
2002-11-25 15:29:57 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2004-10-16 11:41:50 +00:00
|
|
|
#include <signal.h>
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
// don't show stl-warnings
|
|
|
|
#pragma warning (disable:4786)
|
|
|
|
#endif
|
|
|
|
|
2006-01-16 22:27:30 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#define GL_GLEXT_LEGACY 1
|
|
|
|
#endif
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
#include "KX_BlenderGL.h"
|
|
|
|
#include "KX_BlenderCanvas.h"
|
|
|
|
#include "KX_BlenderKeyboardDevice.h"
|
|
|
|
#include "KX_BlenderMouseDevice.h"
|
|
|
|
#include "KX_BlenderRenderTools.h"
|
|
|
|
#include "KX_BlenderSystem.h"
|
2006-01-06 03:46:54 +00:00
|
|
|
#include "BL_Material.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#include "KX_KetsjiEngine.h"
|
|
|
|
#include "KX_BlenderSceneConverter.h"
|
|
|
|
#include "KX_PythonInit.h"
|
|
|
|
#include "KX_PyConstraintBinding.h"
|
|
|
|
|
|
|
|
#include "RAS_OpenGLRasterizer.h"
|
|
|
|
#include "RAS_VAOpenGLRasterizer.h"
|
2006-04-02 21:04:20 +00:00
|
|
|
#include "RAS_ListRasterizer.h"
|
2004-03-22 22:02:18 +00:00
|
|
|
#include "RAS_GLExtensionManager.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
#include "NG_LoopBackNetworkDeviceInterface.h"
|
|
|
|
#include "SND_DeviceManager.h"
|
|
|
|
|
|
|
|
#include "SYS_System.h"
|
|
|
|
|
|
|
|
/***/
|
|
|
|
|
|
|
|
#include "DNA_view3d_types.h"
|
|
|
|
#include "DNA_screen_types.h"
|
|
|
|
#include "BKE_global.h"
|
|
|
|
#include "BIF_screen.h"
|
|
|
|
#include "BIF_scrarea.h"
|
|
|
|
|
|
|
|
#include "BKE_main.h"
|
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
#include "BLO_readfile.h"
|
|
|
|
#include "DNA_scene_types.h"
|
|
|
|
/***/
|
|
|
|
|
2006-12-16 05:50:38 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
#include "BSE_headerbuttons.h"
|
|
|
|
void update_for_newframe();
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
static BlendFileData *load_game_data(char *filename) {
|
|
|
|
BlendReadError error;
|
2006-05-22 21:03:43 +00:00
|
|
|
//this doesn't work anymore for relative paths, so use BLO_read_from_memory instead
|
|
|
|
//BlendFileData *bfd= BLO_read_from_file(filename, &error);
|
|
|
|
FILE* file = fopen(filename,"rb");
|
|
|
|
BlendFileData *bfd = 0;
|
|
|
|
if (file)
|
|
|
|
{
|
|
|
|
fseek(file, 0L, SEEK_END);
|
|
|
|
int len= ftell(file);
|
|
|
|
fseek(file, 0L, SEEK_SET);
|
|
|
|
char* filebuffer= new char[len];//MEM_mallocN(len, "text_buffer");
|
|
|
|
int sizeread = fread(filebuffer,len,1,file);
|
|
|
|
if (sizeread==1)
|
|
|
|
{
|
|
|
|
bfd = BLO_read_from_memory(filebuffer, len, &error);
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (!bfd) {
|
|
|
|
printf("Loading %s failed: %s\n", filename, BLO_bre_as_string(error));
|
|
|
|
}
|
|
|
|
|
|
|
|
return bfd;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void StartKetsjiShell(struct ScrArea *area,
|
|
|
|
char* scenename,
|
2006-05-22 21:03:43 +00:00
|
|
|
struct Main* maggie1,
|
2005-08-23 13:16:02 +00:00
|
|
|
struct SpaceIpo *sipo,
|
2002-10-12 11:37:38 +00:00
|
|
|
int always_use_expand_framing)
|
|
|
|
{
|
|
|
|
int exitrequested = KX_EXIT_REQUEST_NO_REQUEST;
|
2005-08-23 13:16:02 +00:00
|
|
|
|
2006-05-22 21:03:43 +00:00
|
|
|
Main* blenderdata = maggie1;
|
2005-08-23 13:16:02 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
char* startscenename = scenename;
|
|
|
|
char pathname[160];
|
2006-05-22 21:03:43 +00:00
|
|
|
strcpy (pathname, blenderdata->name);
|
2002-10-12 11:37:38 +00:00
|
|
|
STR_String exitstring = "";
|
|
|
|
BlendFileData *bfd= NULL;
|
2006-01-06 03:46:54 +00:00
|
|
|
|
2004-03-31 12:20:02 +00:00
|
|
|
bgl::InitExtensions(1);
|
2004-10-16 11:41:50 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
View3D *v3d= (View3D*) area->spacedata.first;
|
|
|
|
|
|
|
|
// get some preferences
|
|
|
|
SYS_SystemHandle syshandle = SYS_GetSystem();
|
|
|
|
bool properties = (SYS_GetCommandLineInt(syshandle, "show_properties", 0) != 0);
|
|
|
|
bool usefixed = (SYS_GetCommandLineInt(syshandle, "fixedtime", 0) != 0);
|
|
|
|
bool profile = (SYS_GetCommandLineInt(syshandle, "show_profile", 0) != 0);
|
|
|
|
bool frameRate = (SYS_GetCommandLineInt(syshandle, "show_framerate", 0) != 0);
|
2005-08-23 13:16:02 +00:00
|
|
|
bool game2ipo = (SYS_GetCommandLineInt(syshandle, "game2ipo", 0) != 0);
|
2006-04-02 21:04:20 +00:00
|
|
|
bool displaylists = (SYS_GetCommandLineInt(syshandle, "displaylists", 0) != 0);
|
2006-01-06 03:46:54 +00:00
|
|
|
bool usemat = false;
|
2006-04-02 21:04:20 +00:00
|
|
|
|
2006-01-06 03:46:54 +00:00
|
|
|
#ifdef GL_ARB_multitexture
|
|
|
|
if(bgl::RAS_EXT_support._ARB_multitexture && bgl::QueryVersion(1, 1)) {
|
|
|
|
usemat = (SYS_GetCommandLineInt(syshandle, "blender_material", 0) != 0);
|
|
|
|
int unitmax=0;
|
|
|
|
glGetIntegerv(GL_MAX_TEXTURE_UNITS_ARB, (GLint*)&unitmax);
|
|
|
|
bgl::max_texture_units = MAXTEX>unitmax?unitmax:MAXTEX;
|
|
|
|
//std::cout << "using(" << bgl::max_texture_units << ") of(" << unitmax << ") texture units." << std::endl;
|
|
|
|
} else {
|
|
|
|
bgl::max_texture_units = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-08-23 13:16:02 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
// create the canvas, rasterizer and rendertools
|
|
|
|
RAS_ICanvas* canvas = new KX_BlenderCanvas(area);
|
|
|
|
canvas->SetMouseState(RAS_ICanvas::MOUSE_INVISIBLE);
|
|
|
|
RAS_IRenderTools* rendertools = new KX_BlenderRenderTools();
|
|
|
|
RAS_IRasterizer* rasterizer = NULL;
|
|
|
|
|
|
|
|
// let's see if we want to use vertexarrays or not
|
|
|
|
int usevta = SYS_GetCommandLineInt(syshandle,"vertexarrays",1);
|
|
|
|
bool useVertexArrays = (usevta > 0);
|
|
|
|
|
2006-04-02 21:04:20 +00:00
|
|
|
bool lock_arrays = (displaylists && useVertexArrays);
|
|
|
|
|
|
|
|
if(displaylists && !useVertexArrays)
|
|
|
|
rasterizer = new RAS_ListRasterizer(canvas);
|
|
|
|
else if (useVertexArrays && bgl::QueryVersion(1, 1))
|
|
|
|
rasterizer = new RAS_VAOpenGLRasterizer(canvas, lock_arrays);
|
2002-10-12 11:37:38 +00:00
|
|
|
else
|
|
|
|
rasterizer = new RAS_OpenGLRasterizer(canvas);
|
|
|
|
|
|
|
|
// create the inputdevices
|
|
|
|
KX_BlenderKeyboardDevice* keyboarddevice = new KX_BlenderKeyboardDevice();
|
|
|
|
KX_BlenderMouseDevice* mousedevice = new KX_BlenderMouseDevice();
|
|
|
|
|
|
|
|
// create a networkdevice
|
|
|
|
NG_NetworkDeviceInterface* networkdevice = new
|
|
|
|
NG_LoopBackNetworkDeviceInterface();
|
|
|
|
|
|
|
|
// get an audiodevice
|
|
|
|
SND_DeviceManager::Subscribe();
|
|
|
|
SND_IAudioDevice* audiodevice = SND_DeviceManager::Instance();
|
|
|
|
audiodevice->UseCD();
|
|
|
|
|
|
|
|
// create a ketsji/blendersystem (only needed for timing and stuff)
|
|
|
|
KX_BlenderSystem* kxsystem = new KX_BlenderSystem();
|
|
|
|
|
|
|
|
// create the ketsjiengine
|
|
|
|
KX_KetsjiEngine* ketsjiengine = new KX_KetsjiEngine(kxsystem);
|
|
|
|
|
|
|
|
// set the devices
|
|
|
|
ketsjiengine->SetKeyboardDevice(keyboarddevice);
|
|
|
|
ketsjiengine->SetMouseDevice(mousedevice);
|
|
|
|
ketsjiengine->SetNetworkDevice(networkdevice);
|
|
|
|
ketsjiengine->SetCanvas(canvas);
|
|
|
|
ketsjiengine->SetRenderTools(rendertools);
|
|
|
|
ketsjiengine->SetRasterizer(rasterizer);
|
|
|
|
ketsjiengine->SetNetworkDevice(networkdevice);
|
|
|
|
ketsjiengine->SetAudioDevice(audiodevice);
|
|
|
|
ketsjiengine->SetUseFixedTime(usefixed);
|
|
|
|
ketsjiengine->SetTimingDisplay(frameRate, profile, properties);
|
2005-08-23 13:16:02 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2005-08-23 13:16:02 +00:00
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
// some blender stuff
|
|
|
|
MT_CmMatrix4x4 projmat;
|
|
|
|
MT_CmMatrix4x4 viewmat;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
float *viewmat_linear= (float*) v3d->viewmat;
|
|
|
|
viewmat.setElem(i, viewmat_linear[i]);
|
|
|
|
}
|
|
|
|
for (i = 0; i < 16; i++)
|
|
|
|
{
|
|
|
|
float *projmat_linear = (float*) area->winmat;
|
|
|
|
projmat.setElem(i, projmat_linear[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
float camzoom = (1.41421 + (v3d->camzoom / 50.0));
|
|
|
|
camzoom *= camzoom;
|
|
|
|
camzoom = 4.0 / camzoom;
|
|
|
|
|
|
|
|
ketsjiengine->SetDrawType(v3d->drawtype);
|
|
|
|
ketsjiengine->SetCameraZoom(camzoom);
|
|
|
|
|
|
|
|
// if we got an exitcode 3 (KX_EXIT_REQUEST_START_OTHER_GAME) load a different file
|
|
|
|
if (exitrequested == KX_EXIT_REQUEST_START_OTHER_GAME || exitrequested == KX_EXIT_REQUEST_RESTART_GAME)
|
|
|
|
{
|
|
|
|
exitrequested = KX_EXIT_REQUEST_NO_REQUEST;
|
|
|
|
if (bfd) BLO_blendfiledata_free(bfd);
|
|
|
|
|
|
|
|
char basedpath[160];
|
|
|
|
// base the actuator filename with respect
|
|
|
|
// to the original file working directory
|
|
|
|
if (exitstring != "")
|
|
|
|
strcpy(basedpath, exitstring.Ptr());
|
|
|
|
|
|
|
|
BLI_convertstringcode(basedpath, pathname, 0);
|
|
|
|
bfd = load_game_data(basedpath);
|
|
|
|
|
|
|
|
// if it wasn't loaded, try it forced relative
|
|
|
|
if (!bfd)
|
|
|
|
{
|
|
|
|
// just add "//" in front of it
|
|
|
|
char temppath[162];
|
|
|
|
strcpy(temppath, "//");
|
|
|
|
strcat(temppath, basedpath);
|
|
|
|
|
|
|
|
BLI_convertstringcode(temppath, pathname, 0);
|
|
|
|
bfd = load_game_data(temppath);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if we got a loaded blendfile, proceed
|
|
|
|
if (bfd)
|
|
|
|
{
|
|
|
|
blenderdata = bfd->main;
|
|
|
|
startscenename = bfd->curscene->id.name + 2;
|
|
|
|
}
|
|
|
|
// else forget it, we can't find it
|
|
|
|
else
|
|
|
|
{
|
|
|
|
exitrequested = KX_EXIT_REQUEST_QUIT_GAME;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-10-16 11:41:50 +00:00
|
|
|
Scene *blscene = NULL;
|
|
|
|
if (!bfd)
|
|
|
|
{
|
2006-05-22 21:03:43 +00:00
|
|
|
blscene = (Scene*) blenderdata->scene.first;
|
|
|
|
for (Scene *sce= (Scene*) blenderdata->scene.first; sce; sce= (Scene*) sce->id.next)
|
2004-10-16 11:41:50 +00:00
|
|
|
{
|
|
|
|
if (startscenename == (sce->id.name+2))
|
|
|
|
{
|
|
|
|
blscene = sce;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
blscene = bfd->curscene;
|
|
|
|
}
|
|
|
|
|
2005-08-23 13:16:02 +00:00
|
|
|
if (blscene)
|
|
|
|
{
|
|
|
|
int startFrame = blscene->r.cfra;
|
|
|
|
ketsjiengine->SetGame2IpoMode(game2ipo,startFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-10-16 11:41:50 +00:00
|
|
|
// Quad buffered needs a special window.
|
|
|
|
if (blscene->r.stereomode != RAS_IRasterizer::RAS_STEREO_QUADBUFFERED)
|
|
|
|
rasterizer->SetStereoMode((RAS_IRasterizer::StereoMode) blscene->r.stereomode);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
if (exitrequested != KX_EXIT_REQUEST_QUIT_GAME)
|
|
|
|
{
|
|
|
|
if (v3d->persp != 2)
|
|
|
|
{
|
|
|
|
ketsjiengine->EnableCameraOverride(startscenename);
|
|
|
|
ketsjiengine->SetCameraOverrideUseOrtho((v3d->persp == 0));
|
|
|
|
ketsjiengine->SetCameraOverrideProjectionMatrix(projmat);
|
|
|
|
ketsjiengine->SetCameraOverrideViewMatrix(viewmat);
|
|
|
|
}
|
|
|
|
|
|
|
|
// create a scene converter, create and convert the startingscene
|
2006-05-22 21:03:43 +00:00
|
|
|
KX_ISceneConverter* sceneconverter = new KX_BlenderSceneConverter(blenderdata,sipo, ketsjiengine);
|
2002-10-12 11:37:38 +00:00
|
|
|
ketsjiengine->SetSceneConverter(sceneconverter);
|
2006-12-16 05:50:38 +00:00
|
|
|
sceneconverter->addInitFromFrame=false;
|
2002-10-12 11:37:38 +00:00
|
|
|
if (always_use_expand_framing)
|
|
|
|
sceneconverter->SetAlwaysUseExpandFraming(true);
|
|
|
|
|
2006-01-06 03:46:54 +00:00
|
|
|
if(usemat)
|
|
|
|
sceneconverter->SetMaterials(true);
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
KX_Scene* startscene = new KX_Scene(keyboarddevice,
|
|
|
|
mousedevice,
|
|
|
|
networkdevice,
|
|
|
|
audiodevice,
|
|
|
|
startscenename);
|
|
|
|
|
|
|
|
// some python things
|
|
|
|
PyObject* dictionaryobject = initGamePythonScripting("Ketsji", psl_Lowest);
|
|
|
|
ketsjiengine->SetPythonDictionary(dictionaryobject);
|
|
|
|
initRasterizer(rasterizer, canvas);
|
2006-05-13 23:31:36 +00:00
|
|
|
PyObject *gameLogic = initGameLogic(startscene);
|
2002-10-12 11:37:38 +00:00
|
|
|
initGameKeys();
|
|
|
|
initPythonConstraintBinding();
|
|
|
|
|
|
|
|
|
|
|
|
if (sceneconverter)
|
|
|
|
{
|
|
|
|
// convert and add scene
|
|
|
|
sceneconverter->ConvertScene(
|
|
|
|
startscenename,
|
|
|
|
startscene,
|
|
|
|
dictionaryobject,
|
|
|
|
keyboarddevice,
|
|
|
|
rendertools,
|
|
|
|
canvas);
|
|
|
|
ketsjiengine->AddScene(startscene);
|
|
|
|
|
|
|
|
// init the rasterizer
|
|
|
|
rasterizer->Init();
|
|
|
|
|
|
|
|
// start the engine
|
2006-11-30 00:19:27 +00:00
|
|
|
ketsjiengine->StartEngine(true);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
// the mainloop
|
|
|
|
while (!exitrequested)
|
|
|
|
{
|
|
|
|
// first check if we want to exit
|
|
|
|
exitrequested = ketsjiengine->GetExitCode();
|
|
|
|
|
|
|
|
// kick the engine
|
2006-12-02 22:25:47 +00:00
|
|
|
bool render = ketsjiengine->NextFrame();
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2006-12-02 22:25:47 +00:00
|
|
|
if (render)
|
|
|
|
{
|
|
|
|
// render the frame
|
|
|
|
ketsjiengine->Render();
|
|
|
|
}
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
// test for the ESC key
|
|
|
|
while (qtest())
|
|
|
|
{
|
|
|
|
short val;
|
|
|
|
unsigned short event = extern_qread(&val);
|
|
|
|
|
|
|
|
if (keyboarddevice->ConvertBlenderEvent(event,val))
|
|
|
|
exitrequested = KX_EXIT_REQUEST_BLENDER_ESC;
|
|
|
|
|
|
|
|
/* Coordinate conversion... where
|
|
|
|
* should this really be?
|
|
|
|
*/
|
|
|
|
if (event==MOUSEX) {
|
|
|
|
val = val - scrarea_get_win_x(area);
|
|
|
|
} else if (event==MOUSEY) {
|
|
|
|
val = scrarea_get_win_height(area) - (val - scrarea_get_win_y(area)) - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
mousedevice->ConvertBlenderEvent(event,val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exitstring = ketsjiengine->GetExitString();
|
|
|
|
|
|
|
|
// when exiting the mainloop
|
2006-05-13 23:31:36 +00:00
|
|
|
dictionaryClearByHand(gameLogic);
|
2002-10-12 11:37:38 +00:00
|
|
|
ketsjiengine->StopEngine();
|
2006-05-14 03:39:07 +00:00
|
|
|
exitGamePythonScripting();
|
2002-10-12 11:37:38 +00:00
|
|
|
networkdevice->Disconnect();
|
|
|
|
}
|
|
|
|
if (sceneconverter)
|
|
|
|
{
|
|
|
|
delete sceneconverter;
|
|
|
|
sceneconverter = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// set the cursor back to normal
|
|
|
|
canvas->SetMouseState(RAS_ICanvas::MOUSE_NORMAL);
|
|
|
|
|
|
|
|
// clean up some stuff
|
|
|
|
audiodevice->StopCD();
|
|
|
|
|
|
|
|
if (ketsjiengine)
|
|
|
|
{
|
|
|
|
delete ketsjiengine;
|
|
|
|
ketsjiengine = NULL;
|
|
|
|
}
|
|
|
|
if (kxsystem)
|
|
|
|
{
|
|
|
|
delete kxsystem;
|
|
|
|
kxsystem = NULL;
|
|
|
|
}
|
|
|
|
if (networkdevice)
|
|
|
|
{
|
|
|
|
delete networkdevice;
|
|
|
|
networkdevice = NULL;
|
|
|
|
}
|
|
|
|
if (keyboarddevice)
|
|
|
|
{
|
|
|
|
delete keyboarddevice;
|
|
|
|
keyboarddevice = NULL;
|
|
|
|
}
|
|
|
|
if (mousedevice)
|
|
|
|
{
|
|
|
|
delete mousedevice;
|
|
|
|
mousedevice = NULL;
|
|
|
|
}
|
|
|
|
if (rasterizer)
|
|
|
|
{
|
|
|
|
delete rasterizer;
|
|
|
|
rasterizer = NULL;
|
|
|
|
}
|
|
|
|
if (rendertools)
|
|
|
|
{
|
|
|
|
delete rendertools;
|
|
|
|
rendertools = NULL;
|
|
|
|
}
|
|
|
|
if (canvas)
|
|
|
|
{
|
|
|
|
delete canvas;
|
|
|
|
canvas = NULL;
|
|
|
|
}
|
2005-03-25 10:33:39 +00:00
|
|
|
SND_DeviceManager::Unsubscribe();
|
|
|
|
|
2002-10-12 11:37:38 +00:00
|
|
|
} while (exitrequested == KX_EXIT_REQUEST_RESTART_GAME || exitrequested == KX_EXIT_REQUEST_START_OTHER_GAME);
|
|
|
|
|
|
|
|
if (bfd) BLO_blendfiledata_free(bfd);
|
|
|
|
}
|
2006-11-30 00:19:27 +00:00
|
|
|
|
|
|
|
extern "C" void StartKetsjiShellSimulation(struct ScrArea *area,
|
|
|
|
char* scenename,
|
|
|
|
struct Main* maggie,
|
|
|
|
struct SpaceIpo *sipo,
|
|
|
|
int always_use_expand_framing)
|
|
|
|
{
|
|
|
|
int exitrequested = KX_EXIT_REQUEST_NO_REQUEST;
|
|
|
|
|
|
|
|
Main* blenderdata = maggie;
|
|
|
|
|
|
|
|
char* startscenename = scenename;
|
|
|
|
char pathname[160];
|
|
|
|
strcpy (pathname, maggie->name);
|
|
|
|
STR_String exitstring = "";
|
|
|
|
BlendFileData *bfd= NULL;
|
|
|
|
|
|
|
|
bgl::InitExtensions(1);
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
|
|
|
|
// get some preferences
|
|
|
|
SYS_SystemHandle syshandle = SYS_GetSystem();
|
|
|
|
bool properties = (SYS_GetCommandLineInt(syshandle, "show_properties", 0) != 0);
|
|
|
|
bool usefixed = (SYS_GetCommandLineInt(syshandle, "fixedtime", 0) != 0);
|
|
|
|
bool profile = (SYS_GetCommandLineInt(syshandle, "show_profile", 0) != 0);
|
|
|
|
bool frameRate = (SYS_GetCommandLineInt(syshandle, "show_framerate", 0) != 0);
|
|
|
|
bool game2ipo = true;//(SYS_GetCommandLineInt(syshandle, "game2ipo", 0) != 0);
|
|
|
|
bool displaylists = (SYS_GetCommandLineInt(syshandle, "displaylists", 0) != 0);
|
|
|
|
bool usemat = false;
|
|
|
|
|
|
|
|
// create the canvas, rasterizer and rendertools
|
|
|
|
RAS_ICanvas* canvas = new KX_BlenderCanvas(area);
|
|
|
|
//canvas->SetMouseState(RAS_ICanvas::MOUSE_INVISIBLE);
|
|
|
|
RAS_IRenderTools* rendertools = new KX_BlenderRenderTools();
|
|
|
|
RAS_IRasterizer* rasterizer = NULL;
|
|
|
|
|
|
|
|
// let's see if we want to use vertexarrays or not
|
|
|
|
int usevta = SYS_GetCommandLineInt(syshandle,"vertexarrays",1);
|
|
|
|
bool useVertexArrays = (usevta > 0);
|
|
|
|
|
|
|
|
bool lock_arrays = (displaylists && useVertexArrays);
|
|
|
|
|
|
|
|
if(displaylists && !useVertexArrays)
|
|
|
|
rasterizer = new RAS_ListRasterizer(canvas);
|
|
|
|
else if (useVertexArrays && bgl::QueryVersion(1, 1))
|
|
|
|
rasterizer = new RAS_VAOpenGLRasterizer(canvas, lock_arrays);
|
|
|
|
else
|
|
|
|
rasterizer = new RAS_OpenGLRasterizer(canvas);
|
|
|
|
|
|
|
|
// create the inputdevices
|
|
|
|
KX_BlenderKeyboardDevice* keyboarddevice = new KX_BlenderKeyboardDevice();
|
|
|
|
KX_BlenderMouseDevice* mousedevice = new KX_BlenderMouseDevice();
|
|
|
|
|
|
|
|
// create a networkdevice
|
|
|
|
NG_NetworkDeviceInterface* networkdevice = new
|
|
|
|
NG_LoopBackNetworkDeviceInterface();
|
|
|
|
|
|
|
|
// get an audiodevice
|
|
|
|
SND_DeviceManager::Subscribe();
|
|
|
|
SND_IAudioDevice* audiodevice = SND_DeviceManager::Instance();
|
|
|
|
audiodevice->UseCD();
|
|
|
|
|
|
|
|
// create a ketsji/blendersystem (only needed for timing and stuff)
|
|
|
|
KX_BlenderSystem* kxsystem = new KX_BlenderSystem();
|
|
|
|
|
|
|
|
// create the ketsjiengine
|
|
|
|
KX_KetsjiEngine* ketsjiengine = new KX_KetsjiEngine(kxsystem);
|
|
|
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
Scene *blscene = NULL;
|
|
|
|
if (!bfd)
|
|
|
|
{
|
|
|
|
blscene = (Scene*) maggie->scene.first;
|
|
|
|
for (Scene *sce= (Scene*) maggie->scene.first; sce; sce= (Scene*) sce->id.next)
|
|
|
|
{
|
|
|
|
if (startscenename == (sce->id.name+2))
|
|
|
|
{
|
|
|
|
blscene = sce;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
blscene = bfd->curscene;
|
|
|
|
}
|
|
|
|
int cframe,startFrame;
|
|
|
|
if (blscene)
|
|
|
|
{
|
|
|
|
cframe=blscene->r.cfra;
|
|
|
|
startFrame = blscene->r.sfra;
|
|
|
|
blscene->r.cfra=startFrame;
|
|
|
|
update_for_newframe();
|
|
|
|
ketsjiengine->SetGame2IpoMode(game2ipo,startFrame);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Quad buffered needs a special window.
|
|
|
|
if (blscene->r.stereomode != RAS_IRasterizer::RAS_STEREO_QUADBUFFERED)
|
|
|
|
rasterizer->SetStereoMode((RAS_IRasterizer::StereoMode) blscene->r.stereomode);
|
|
|
|
|
|
|
|
if (exitrequested != KX_EXIT_REQUEST_QUIT_GAME)
|
|
|
|
{
|
|
|
|
// create a scene converter, create and convert the startingscene
|
|
|
|
KX_ISceneConverter* sceneconverter = new KX_BlenderSceneConverter(maggie,sipo, ketsjiengine);
|
|
|
|
ketsjiengine->SetSceneConverter(sceneconverter);
|
2006-12-16 05:50:38 +00:00
|
|
|
sceneconverter->addInitFromFrame=true;
|
|
|
|
|
2006-11-30 00:19:27 +00:00
|
|
|
if (always_use_expand_framing)
|
|
|
|
sceneconverter->SetAlwaysUseExpandFraming(true);
|
|
|
|
|
|
|
|
if(usemat)
|
|
|
|
sceneconverter->SetMaterials(true);
|
|
|
|
|
|
|
|
KX_Scene* startscene = new KX_Scene(keyboarddevice,
|
|
|
|
mousedevice,
|
|
|
|
networkdevice,
|
|
|
|
audiodevice,
|
|
|
|
startscenename);
|
|
|
|
// some python things
|
|
|
|
PyObject* dictionaryobject = initGamePythonScripting("Ketsji", psl_Lowest);
|
|
|
|
ketsjiengine->SetPythonDictionary(dictionaryobject);
|
|
|
|
initRasterizer(rasterizer, canvas);
|
|
|
|
PyObject *gameLogic = initGameLogic(startscene);
|
|
|
|
initGameKeys();
|
|
|
|
initPythonConstraintBinding();
|
|
|
|
|
|
|
|
if (sceneconverter)
|
|
|
|
{
|
|
|
|
// convert and add scene
|
|
|
|
sceneconverter->ConvertScene(
|
|
|
|
startscenename,
|
|
|
|
startscene,
|
|
|
|
dictionaryobject,
|
|
|
|
keyboarddevice,
|
|
|
|
rendertools,
|
|
|
|
canvas);
|
|
|
|
ketsjiengine->AddScene(startscene);
|
|
|
|
|
|
|
|
// start the engine
|
|
|
|
ketsjiengine->StartEngine(false);
|
2007-01-07 04:54:29 +00:00
|
|
|
|
|
|
|
ketsjiengine->SetUseFixedTime(true);
|
|
|
|
|
== Core ==
This adds fractional FPS support to blender and should finally
make NTSC work correctly.
NTSC has an FPS of 30.0/1.001 which is approximately 29.97 FPS.
Therefore, it is not enough to simply make frs_sec a float, since
you can't represent this accurately enough.
I added a seperate variable frs_sec_base and FPS is now
frs_sec / frs_sec_base.
I changed all the places, where frs_sec was used to my best knowledge.
For convenience sake, I added several macros, that should make life
easier in the future:
FRA2TIME(a) : convert frame number to a double precision time in seconds
TIME2FRA(a) : the same in the opposite direction
FPS : return current FPS as a double precision number
(last resort)
This closes bug #6715
Standard framerates not supported / breaks sync -- 23.967 29.967 etc.
https://projects.blender.org/tracker/?func=detail&aid=6715&group_id=9&atid=125
Please give this heavy testing with NTSC files, quicktime in/export
and the python interface.
Errors are most probably only spotted on longer timelines, so that is
also important.
The patch was tested by Troy Sobotka and me, so it most probably should
work out of the box, but wider testing is important, since errors are
very subtle.
Enjoy!
2007-10-21 15:42:08 +00:00
|
|
|
ketsjiengine->SetTicRate(
|
|
|
|
(double) blscene->r.frs_sec /
|
|
|
|
(double) blscene->r.frs_sec_base);
|
2006-11-30 00:19:27 +00:00
|
|
|
|
|
|
|
// the mainloop
|
|
|
|
while ((blscene->r.cfra<=blscene->r.efra)&&(!exitrequested))
|
|
|
|
{
|
|
|
|
printf("frame %i\n",blscene->r.cfra);
|
|
|
|
// first check if we want to exit
|
|
|
|
exitrequested = ketsjiengine->GetExitCode();
|
2006-12-16 05:50:38 +00:00
|
|
|
|
2006-11-30 00:19:27 +00:00
|
|
|
// kick the engine
|
|
|
|
ketsjiengine->NextFrame();
|
|
|
|
blscene->r.cfra=blscene->r.cfra+1;
|
|
|
|
update_for_newframe();
|
2006-12-16 05:50:38 +00:00
|
|
|
|
2006-11-30 00:19:27 +00:00
|
|
|
}
|
|
|
|
exitstring = ketsjiengine->GetExitString();
|
|
|
|
}
|
|
|
|
if (sceneconverter)
|
|
|
|
{
|
|
|
|
delete sceneconverter;
|
|
|
|
sceneconverter = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
blscene->r.cfra=cframe;
|
|
|
|
// set the cursor back to normal
|
|
|
|
canvas->SetMouseState(RAS_ICanvas::MOUSE_NORMAL);
|
|
|
|
|
|
|
|
// clean up some stuff
|
|
|
|
audiodevice->StopCD();
|
|
|
|
if (ketsjiengine)
|
|
|
|
{
|
|
|
|
delete ketsjiengine;
|
|
|
|
ketsjiengine = NULL;
|
|
|
|
}
|
|
|
|
if (kxsystem)
|
|
|
|
{
|
|
|
|
delete kxsystem;
|
|
|
|
kxsystem = NULL;
|
|
|
|
}
|
|
|
|
if (networkdevice)
|
|
|
|
{
|
|
|
|
delete networkdevice;
|
|
|
|
networkdevice = NULL;
|
|
|
|
}
|
|
|
|
if (keyboarddevice)
|
|
|
|
{
|
|
|
|
delete keyboarddevice;
|
|
|
|
keyboarddevice = NULL;
|
|
|
|
}
|
|
|
|
if (mousedevice)
|
|
|
|
{
|
|
|
|
delete mousedevice;
|
|
|
|
mousedevice = NULL;
|
|
|
|
}
|
|
|
|
SND_DeviceManager::Unsubscribe();
|
|
|
|
|
|
|
|
} while (exitrequested == KX_EXIT_REQUEST_RESTART_GAME || exitrequested == KX_EXIT_REQUEST_START_OTHER_GAME);
|
|
|
|
if (bfd) BLO_blendfiledata_free(bfd);
|
== Core ==
This adds fractional FPS support to blender and should finally
make NTSC work correctly.
NTSC has an FPS of 30.0/1.001 which is approximately 29.97 FPS.
Therefore, it is not enough to simply make frs_sec a float, since
you can't represent this accurately enough.
I added a seperate variable frs_sec_base and FPS is now
frs_sec / frs_sec_base.
I changed all the places, where frs_sec was used to my best knowledge.
For convenience sake, I added several macros, that should make life
easier in the future:
FRA2TIME(a) : convert frame number to a double precision time in seconds
TIME2FRA(a) : the same in the opposite direction
FPS : return current FPS as a double precision number
(last resort)
This closes bug #6715
Standard framerates not supported / breaks sync -- 23.967 29.967 etc.
https://projects.blender.org/tracker/?func=detail&aid=6715&group_id=9&atid=125
Please give this heavy testing with NTSC files, quicktime in/export
and the python interface.
Errors are most probably only spotted on longer timelines, so that is
also important.
The patch was tested by Troy Sobotka and me, so it most probably should
work out of the box, but wider testing is important, since errors are
very subtle.
Enjoy!
2007-10-21 15:42:08 +00:00
|
|
|
}
|