| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582 |
- #include <stdio.h>
- #include <iostream>
- #include <fstream>
- #include "i/Input.h"
- #include "scene/PerspectiveCamera.h"
- #include "scene/OrthographicCamera.h"
- #include "m/Math.h"
- #include "r/Renderer.h"
- #include "ui/Painter.h"
- #include "core/App.h"
- #include "rsrc/Mesh.h"
- #include "scene/Light.h"
- #include "scene/PointLight.h"
- #include "scene/SpotLight.h"
- #include "rsrc/Material.h"
- #include "scene/Scene.h"
- #include "util/scanner/Scanner.h"
- #include "rsrc/SkelAnim.h"
- #include "rsrc/LightRsrc.h"
- #include "misc/Parser.h"
- #include "scene/ParticleEmitterNode.h"
- #include "phys/Character.h"
- #include "r/Renderer.h"
- #include "r/RendererInitializer.h"
- #include "r/MainRenderer.h"
- #include "phys/Character.h"
- #include "phys/RigidBody.h"
- #include "script/ScriptingEngine.h"
- #include "core/StdinListener.h"
- #include "scene/ModelNode.h"
- #include "rsrc/Model.h"
- #include "core/Logger.h"
- #include "util/Util.h"
- #include "util/HighRezTimer.h"
- #include "scene/SkinNode.h"
- #include "rsrc/Skin.h"
- #include "scene/MaterialRuntime.h"
- #include "core/Globals.h"
- #include "ui/FtFontLoader.h"
- #include "ui/Font.h"
- #include "event/Manager.h"
- #include "event/SceneColor.h"
- #include "event/MainRendererPpsHdr.h"
- #include "rsrc/ShaderProgramPrePreprocessor.h"
- #include "rsrc/Material.h"
- #include "core/parallel/Manager.h"
- #include "r/PhysDbgDrawer.h"
- // map (hard coded)
- ModelNode* floor__,* sarge,* horse,* crate,* pentagram;
- SkinNode* imp;
- //SkelModelNode* imp;
- PointLight* point_lights[10];
- SpotLight* spot_lights[2];
- ParticleEmitterNode* partEmitter;
- phys::Character* character;
- ui::Painter* painter;
- // Physics
- Vec<btRigidBody*> boxes;
- #define ARRAY_SIZE_X 5
- #define ARRAY_SIZE_Y 5
- #define ARRAY_SIZE_Z 5
- #define MAX_PROXIES (ARRAY_SIZE_X*ARRAY_SIZE_Y*ARRAY_SIZE_Z + 1024)
- #define SCALING 1.
- #define START_POS_X -5
- #define START_POS_Y -5
- #define START_POS_Z -3
- void initPhysics()
- {
- btCollisionShape* groundShape = new btBoxShape(btVector3(btScalar(50.),btScalar(50.),btScalar(50.)));
- Transform groundTransform;
- groundTransform.setIdentity();
- groundTransform.setOrigin(Vec3(0,-50, 0));
- phys::RigidBody::Initializer init;
- init.mass = 0.0;
- init.shape = groundShape;
- init.startTrf = groundTransform;
- new phys::RigidBody(SceneSingleton::getInstance().getPhysMasterContainer(), init);
- /*{
- btCollisionShape* colShape = new btBoxShape(btVector3(SCALING*1,SCALING*1,SCALING*1));
- float start_x = START_POS_X - ARRAY_SIZE_X/2;
- float start_y = START_POS_Y;
- float start_z = START_POS_Z - ARRAY_SIZE_Z/2;
- for (int k=0;k<ARRAY_SIZE_Y;k++)
- {
- for (int i=0;i<ARRAY_SIZE_X;i++)
- {
- for(int j = 0;j<ARRAY_SIZE_Z;j++)
- {
- //using motionstate is recommended, it provides interpolation capabilities, and only synchronizes 'active' objects
- MeshNode* crate = new MeshNode;
- crate->init("models/crate0/crate0.mesh");
- crate->getLocalTransform().setScale(1.11);
- Transform trf(SCALING*Vec3(2.0*i + start_x, 20+2.0*k + start_y, 2.0*j + start_z), Mat3::getIdentity(), 1.0);
- new RigidBody(1.0, trf, colShape, crate, Physics::CG_MAP, Physics::CG_ALL);
- }
- }
- }
- }*/
- }
- //==============================================================================
- // init =
- //==============================================================================
- void init()
- {
- INFO("Other init...");
- Material mtl;
- mtl.load("lala.mtl");
- srand(unsigned(time(NULL)));
- painter = new ui::Painter(Vec2(AppSingleton::getInstance().getWindowWidth(),
- AppSingleton::getInstance().getWindowHeight()));
- painter->setFont("engine-rsrc/ModernAntiqua.ttf", 25, 25);
- // camera
- PerspectiveCamera* cam = new PerspectiveCamera(false, NULL);
- //cam->setAll(toRad(100.0), toRad(100.0) / r::MainRendererSingleton::getInstance().getAspectRatio(), 0.5, 200.0);
- cam->setAll(r::MainRendererSingleton::getInstance().getAspectRatio()*toRad(60.0), toRad(60.0), 0.5, 200.0);
- cam->moveLocalY(3.0);
- cam->moveLocalZ(5.7);
- cam->moveLocalX(-0.3);
- AppSingleton::getInstance().setActiveCam(cam);
- INFO(cam->getSceneNodeName());
- OrthographicCamera* ocam = new OrthographicCamera(false, NULL);
- ocam->setAll(-1, 1, 1.0, -1.0, 0.1, 10.0);
- // lights
- point_lights[0] = new PointLight(false, NULL);
- point_lights[0]->init("maps/temple/light0.light");
- point_lights[0]->setLocalTransform(Transform(Vec3(-1.0, 2.4, 1.0), Mat3::getIdentity(), 1.0));
- point_lights[1] = new PointLight(false, NULL);
- point_lights[1]->init("maps/temple/light1.light");
- point_lights[1]->setLocalTransform(Transform(Vec3(2.5, 1.4, 1.0), Mat3::getIdentity(), 1.0));
- spot_lights[0] = new SpotLight(false, NULL);
- spot_lights[0]->init("maps/temple/light2.light");
- spot_lights[0]->setLocalTransform(Transform(Vec3(1.3, 4.3, 3.0), Mat3(Euler(toRad(-20), toRad(20), 0.0)), 1.0));
- spot_lights[1] = new SpotLight(false, NULL);
- spot_lights[1]->init("maps/temple/light3.light");
- spot_lights[1]->setLocalTransform(Transform(Vec3(-2.3, 6.3, 2.9), Mat3(Euler(toRad(-70), toRad(-20), 0.0)), 1.0));
- // horse
- horse = new ModelNode(false, NULL);
- horse->init("meshes/horse/horse.mdl");
- horse->setLocalTransform(Transform(Vec3(-2, 0, 0), Mat3::getIdentity(), 1.0));
- // Pentagram
- /*pentagram = new ModelNode(false, NULL);
- pentagram->init("models/pentagram/pentagram.mdl");
- pentagram->setLocalTransform(Transform(Vec3(2, 0, 0), Mat3::getIdentity(), 1.0));
- // Sponza
- ModelNode* sponza = new ModelNode(false, NULL);
- //sponza->init("maps/sponza/sponza.mdl");
- sponza->init("maps/sponza-crytek/sponza_crytek.mdl");
- sponza->setLocalTransform(Transform(Vec3(0.0), Mat3::getIdentity(), 0.05));
- // Imp
- imp = new SkinNode(false, NULL);
- imp->setLocalTransform(Transform(Vec3(0.0, 2.0, 0.0), Mat3::getIdentity(), 0.7));
- imp->init("models/imp/imp.skin");
- imp->skelAnimModelNodeCtrl = new SkelAnimModelNodeCtrl(*imp);
- imp->skelAnimModelNodeCtrl->set(imp->getSkin().getSkelAnims()[0].get());
- imp->skelAnimModelNodeCtrl->setStep(0.8);
- imp->addChild(*cam);*/
- // sarge
- /*sarge = new MeshNode();
- sarge->init("meshes/sphere/sphere16.mesh");
- //sarge->setLocalTransform(Vec3(0, -2.8, 1.0), Mat3(Euler(-m::PI/2, 0.0, 0.0)), 1.1);
- sarge->setLocalTransform(Transform(Vec3(0, 2.0, 2.0), Mat3::getIdentity(), 0.4));
-
- // floor
- floor__ = new MeshNode();
- floor__->init("maps/temple/Cube.019.mesh");
- floor__->setLocalTransform(Transform(Vec3(0.0, -0.19, 0.0), Mat3(Euler(-m::PI/2, 0.0, 0.0)), 0.8));*/
- // imp
- /*imp = new SkelModelNode();
- imp->init("models/imp/imp.smdl");
- //imp->setLocalTransform(Transform(Vec3(0.0, 2.11, 0.0), Mat3(Euler(-m::PI/2, 0.0, 0.0)), 0.7));
- SkelAnimCtrl* ctrl = new SkelAnimCtrl(*imp->meshNodes[0]->meshSkelCtrl->skelNode);
- ctrl->skelAnim.loadRsrc("models/imp/walk.imp.anim");
- ctrl->step = 0.8;*/
- // cave map
- /*for(int i=1; i<21; i++)
- {
- MeshNode* node = new MeshNode();
- node->init(("maps/cave/rock." + lexical_cast<string>(i) + ".mesh").c_str());
- node->setLocalTransform(Transform(Vec3(0.0, -0.0, 0.0), Mat3::getIdentity(), 0.01));
- }*/
- // sponza map
- /*MeshNode* node = new MeshNode();
- node->init("maps/sponza/floor.mesh");
- node = new MeshNode();
- node->init("maps/sponza/walls.mesh");
- node = new MeshNode();
- node->init("maps/sponza/light-marbles.mesh");
- node = new MeshNode();
- node->init("maps/sponza/dark-marbles.mesh");*/
- //node->setLocalTransform(Transform(Vec3(0.0, -0.0, 0.0), Mat3::getIdentity(), 0.01));
- // particle emitter
- partEmitter = new ParticleEmitterNode(false, NULL);
- partEmitter->init("asdf");
- partEmitter->getLocalTransform().setOrigin(Vec3(3.0, 0.0, 0.0));
- return;
- // character
- /*PhyCharacter::Initializer init;
- init.sceneNode = imp;
- init.startTrf = Transform(Vec3(0, 40, 0), Mat3::getIdentity(), 1.0);
- character = new PhyCharacter(SceneSingleton::getInstance().getPhysics(), init);*/
- // crate
- /*crate = new MeshNode;
- crate->init("models/crate0/crate0.mesh");
- crate->scaleLspace = 1.0;*/
- //
- //floor_ = new floor_t;
- //floor_->material = RsrcMngr::materials.load("materials/default.mtl");
- initPhysics();
- //INFO("Engine initialization ends (" << (App::getTicks() - ticks) << ")");
- }
- //==============================================================================
- // =
- //==============================================================================
- void mainLoopExtra()
- {
- InputSingleton::getInstance().handleEvents();
- float dist = 0.2;
- float ang = toRad(3.0);
- float scale = 0.01;
- // move the camera
- static SceneNode* mover = AppSingleton::getInstance().getActiveCam();
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_1)) mover = AppSingleton::getInstance().getActiveCam();
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_2)) mover = point_lights[0];
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_3)) mover = spot_lights[0];
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_4)) mover = point_lights[1];
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_5)) mover = spot_lights[1];
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_6)) mover = imp;
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_7)) mover =
- SceneSingleton::getInstance().getParticleEmitterNodes()[0];
- //if(InputSingleton::getInstance().getKey(SDL_SCANCODE_M) == 1) InputSingleton::getInstance().warpMouse = !InputSingleton::getInstance().warpMouse;
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_A)) mover->moveLocalX(-dist);
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_D)) mover->moveLocalX(dist);
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_LSHIFT)) mover->moveLocalY(dist);
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_SPACE)) mover->moveLocalY(-dist);
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_W)) mover->moveLocalZ(-dist);
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_S)) mover->moveLocalZ(dist);
- if(!InputSingleton::getInstance().warpMouse())
- {
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_UP)) mover->rotateLocalX(ang);
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_DOWN)) mover->rotateLocalX(-ang);
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_LEFT)) mover->rotateLocalY(ang);
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_RIGHT)) mover->rotateLocalY(-ang);
- }
- else
- {
- float accel = 44.0;
- mover->rotateLocalX(ang * InputSingleton::getInstance().mouseVelocity.y() * accel);
- mover->rotateLocalY(-ang * InputSingleton::getInstance().mouseVelocity.x() * accel);
- }
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_Q)) mover->rotateLocalZ(ang);
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_E)) mover->rotateLocalZ(-ang);
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_PAGEUP)) mover->getLocalTransform().getScale() += scale ;
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_PAGEDOWN)) mover->getLocalTransform().getScale() -= scale ;
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_K))
- AppSingleton::getInstance().getActiveCam()->lookAtPoint(point_lights[0]->getWorldTransform().getOrigin());
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_I))
- character->moveForward(0.1);
- /*if(InputSingleton::getInstance().getKey(SDL_SCANCODE_F) == 1)
- {
- Event::ManagerSingleton::getInstance().createEvent(Event::MainRendererPpsHdr(HighRezTimer::getCrntTime() + 5,
- 5, r::MainRendererSingleton::getInstance().getPps().getHdr().getExposure() + 20.0, 3, 1.4));
- }*/
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_O) == 1)
- {
- btRigidBody* body = static_cast<btRigidBody*>(boxes[0]);
- //body->getMotionState()->setWorldTransform(toBt(Mat4(Vec3(0.0, 10.0, 0.0), Mat3::getIdentity(), 1.0)));
- body->setWorldTransform(toBt(Mat4(Vec3(0.0, 10.0, 0.0), Mat3::getIdentity(), 1.0)));
- //body->clearForces();
- body->forceActivationState(ACTIVE_TAG);
- }
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_Y) == 1)
- {
- INFO("Exec script");
- ScriptingEngineSingleton::getInstance().execScript(util::readFile("test.py").c_str());
- }
- mover->getLocalTransform().getRotation().reorthogonalize();
- //INFO(mover->getSceneNodeName())
- /*if(spot_lights[0]->getCamera().insideFrustum(spot_lights[1]->getCamera()))
- {
- INFO("in");
- }
- else
- {
- INFO("out");
- }*/
- }
- //==============================================================================
- // mainLoop =
- //==============================================================================
- void mainLoop()
- {
- INFO("Entering main loop");
- HighRezTimer mainLoopTimer;
- mainLoopTimer.start();
- HighRezTimer::Scalar prevUpdateTime = HighRezTimer::getCrntTime();
- HighRezTimer::Scalar crntTime = prevUpdateTime;
- while(1)
- {
- HighRezTimer timer;
- timer.start();
- prevUpdateTime = crntTime;
- crntTime = HighRezTimer::getCrntTime();
- //
- // Update
- //
- mainLoopExtra();
- void execStdinScpripts();
- execStdinScpripts();
- SceneSingleton::getInstance().getPhysMasterContainer().update(prevUpdateTime, crntTime);
- SceneSingleton::getInstance().updateAllWorldStuff(prevUpdateTime, crntTime);
- SceneSingleton::getInstance().doVisibilityTests(*AppSingleton::getInstance().getActiveCam());
- SceneSingleton::getInstance().updateAllControllers();
- event::ManagerSingleton::getInstance().updateAllEvents(prevUpdateTime, crntTime);
- r::MainRendererSingleton::getInstance().render(*AppSingleton::getInstance().getActiveCam());
- painter->setPosition(Vec2(0.0, 0.1));
- painter->setColor(Vec4(1.0));
- //painter->drawText("A");
- const r::MainRenderer& r = r::MainRendererSingleton::getInstance();
- std::stringstream ss;
- ss << "MS: " << r.getMsTime() * 1000000 << " IS: " <<
- r.getIsTime() * 1000000 << " BS: " << r.getBsTime() * 1000000 <<
- " PPS: " << r.getPpsTime() * 1000000 << " DBG: " <<
- r.getDbgTime() * 1000000;
- ss << "\n" << AppSingleton::getInstance().getActiveCam()->
- getVisibleMsRenderableNodes().size();
- painter->drawText(ss.str());
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_ESCAPE))
- {
- break;
- }
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_F11))
- {
- AppSingleton::getInstance().togleFullScreen();
- }
- if(InputSingleton::getInstance().getKey(SDL_SCANCODE_F12) == 1)
- {
- r::MainRendererSingleton::getInstance().takeScreenshot("gfx/screenshot.jpg");
- }
- AppSingleton::getInstance().swapBuffers();
- //
- // Async resource loading
- //
- if(ResourceManagerSingleton::getInstance().getAsyncLoadingRequestsNum() > 0)
- {
- HighRezTimer::Scalar a = timer.getElapsedTime();
- HighRezTimer::Scalar b = AppSingleton::getInstance().getTimerTick();
- HighRezTimer::Scalar timeToSpendForRsrcPostProcess;
- if(a < b)
- {
- timeToSpendForRsrcPostProcess = b - a;
- }
- else
- {
- timeToSpendForRsrcPostProcess = 0.001;
- }
- ResourceManagerSingleton::getInstance().postProcessFinishedLoadingRequests(timeToSpendForRsrcPostProcess);
- }
- //
- // Sleep
- //
- timer.stop();
- if(timer.getElapsedTime() < AppSingleton::getInstance().getTimerTick())
- {
- SDL_Delay((AppSingleton::getInstance().getTimerTick() - timer.getElapsedTime()) * 1000.0);
- }
- /*if(r::MainRendererSingleton::getInstance().getFramesNum() == 100)
- {
- break;
- }*/
- }
- INFO("Exiting main loop (" << mainLoopTimer.getElapsedTime() << " sec)");
- }
- //==============================================================================
- // initSubsystems =
- //==============================================================================
- void initSubsystems(int argc, char* argv[])
- {
- // App
- AppSingleton::getInstance().init(argc, argv);
- // Main renderer
- r::RendererInitializer initializer;
- initializer.ms.ez.enabled = true;
- initializer.dbg.enabled = true;
- initializer.is.sm.bilinearEnabled = true;
- initializer.is.sm.enabled = true;
- initializer.is.sm.pcfEnabled = true;
- initializer.is.sm.resolution = 1024;
- initializer.is.sm.level0Distance = 3.0;
- initializer.pps.hdr.enabled = true;
- initializer.pps.hdr.renderingQuality = 0.25;
- initializer.pps.hdr.blurringDist = 1.0;
- initializer.pps.hdr.blurringIterationsNum = 2;
- initializer.pps.hdr.exposure = 4.0;
- initializer.pps.ssao.blurringIterationsNum = 4;
- initializer.pps.ssao.enabled = true;
- initializer.pps.ssao.renderingQuality = 0.3;
- initializer.pps.bl.enabled = true;
- initializer.pps.bl.blurringIterationsNum = 2;
- initializer.pps.bl.sideBlurFactor = 1.0;
- initializer.mainRendererQuality = 1.0;
- r::MainRendererSingleton::getInstance().init(initializer);
- // Scripting engine
- const char* commonPythonCode =
- "import sys\n"
- "from Anki import *\n"
- "\n"
- "class StdoutCatcher:\n"
- " def write(self, str_):\n"
- " if str_ == \"\\n\": return\n"
- " line = sys._getframe(1).f_lineno\n"
- " file = sys._getframe(1).f_code.co_filename\n"
- " func = sys._getframe(1).f_code.co_name\n"
- " LoggerSingleton.getInstance().write(file, line, "
- "func, str_ + \"\\n\")\n"
- "\n"
- "class StderrCatcher:\n"
- " def write(self, str_):\n"
- " line = sys._getframe(1).f_lineno\n"
- " file = sys._getframe(1).f_code.co_filename\n"
- " func = sys._getframe(1).f_code.co_name\n"
- " LoggerSingleton.getInstance().write(file, line, func, str_)\n"
- "\n"
- "sys.stdout = StdoutCatcher()\n"
- "sys.stderr = StderrCatcher()\n";
- ScriptingEngineSingleton::getInstance().execScript(commonPythonCode);
- // Stdin listener
- StdinListenerSingleton::getInstance().start();
- // Parallel jobs
- parallel::ManagerSingleton::getInstance().init(4);
- // Add drawer to physics
- SceneSingleton::getInstance().getPhysMasterContainer().setDebugDrawer(
- new r::PhysDbgDrawer(r::MainRendererSingleton::getInstance().getDbg()));
- }
- //==============================================================================
- // execStdinScpripts =
- //==============================================================================
- /// The func pools the stdinListener for string in the console, if
- /// there are any it executes them with scriptingEngine
- void execStdinScpripts()
- {
- while(1)
- {
- std::string cmd = StdinListenerSingleton::getInstance().getLine();
- if(cmd.length() < 1)
- {
- break;
- }
- try
- {
- ScriptingEngineSingleton::getInstance().execScript(cmd.c_str(),
- "command line input");
- }
- catch(Exception& e)
- {
- ERROR(e.what());
- }
- }
- }
- //==============================================================================
- // main =
- //==============================================================================
- int main(int argc, char* argv[])
- {
- int exitCode;
- try
- {
- initSubsystems(argc, argv);
- init();
- mainLoop();
- INFO("Exiting...");
- AppSingleton::getInstance().quit(EXIT_SUCCESS);
- exitCode = 0;
- }
- catch(std::exception& e)
- {
- //ERROR("Aborting: " << e.what());
- std::cerr << "Aborting: " << e.what() << std::endl;
- //abort();
- exitCode = 1;
- }
- return exitCode;
- }
|