Michaël Lemaire
3e14fedbca
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@550 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
439 lines
10 KiB
C++
439 lines
10 KiB
C++
#include "widgetexplorer.h"
|
|
|
|
#include <QGLWidget>
|
|
#include <QKeyEvent>
|
|
#include <QTime>
|
|
#include <math.h>
|
|
#include <GL/glu.h>
|
|
#include <QThread>
|
|
#include "../lib_paysages/scenery.h"
|
|
#include "../lib_paysages/tools/euclid.h"
|
|
#include "../exploring/main.h"
|
|
#include "explorerchunkterrain.h"
|
|
#include "explorerchunksky.h"
|
|
#include "tools.h"
|
|
|
|
class ChunkMaintenanceThread:public QThread
|
|
{
|
|
public:
|
|
ChunkMaintenanceThread(WidgetExplorer* wanderer)
|
|
{
|
|
_wanderer = wanderer;
|
|
_running = true;
|
|
}
|
|
|
|
void askStop()
|
|
{
|
|
_running = false;
|
|
}
|
|
|
|
static inline void usleep(unsigned long us)
|
|
{
|
|
QThread::usleep(us);
|
|
}
|
|
|
|
protected:
|
|
void run()
|
|
{
|
|
while (_running)
|
|
{
|
|
_wanderer->performChunksMaintenance();
|
|
QThread::usleep(10000);
|
|
}
|
|
}
|
|
|
|
private:
|
|
bool _running;
|
|
WidgetExplorer* _wanderer;
|
|
};
|
|
|
|
static QVector<ChunkMaintenanceThread*> _threads;
|
|
|
|
static Vector3 _getCameraLocation(Renderer* renderer, Vector3)
|
|
{
|
|
return ((CameraDefinition*)renderer->customData[2])->location;
|
|
}
|
|
|
|
static AtmosphereResult _applyAerialPerspective(Renderer*, Vector3, Color base)
|
|
{
|
|
AtmosphereResult result;
|
|
atmosphereInitResult(&result);
|
|
result.base = base;
|
|
result.final = base;
|
|
atmosphereUpdateResult(&result);
|
|
return result;
|
|
}
|
|
|
|
WidgetExplorer::WidgetExplorer(QWidget *parent, CameraDefinition* camera):
|
|
QGLWidget(parent)
|
|
{
|
|
setMinimumSize(400, 300);
|
|
setFocusPolicy(Qt::StrongFocus);
|
|
|
|
_base_camera = camera;
|
|
cameraCopyDefinition(camera, &_current_camera);
|
|
|
|
_renderer = sceneryCreateStandardRenderer();
|
|
_renderer->render_quality = 3;
|
|
_renderer->customData[2] = _base_camera;
|
|
_renderer->getCameraLocation = _getCameraLocation;
|
|
_renderer->atmosphere->applyAerialPerspective = _applyAerialPerspective;
|
|
lightingManagerDisableSpecularity(_renderer->lighting);
|
|
|
|
_inited = false;
|
|
_updated = false;
|
|
|
|
_average_frame_time = 0.05;
|
|
_quality = 3;
|
|
_last_mouse_x = 0;
|
|
_last_mouse_y = 0;
|
|
|
|
startTimer(500);
|
|
}
|
|
|
|
WidgetExplorer::~WidgetExplorer()
|
|
{
|
|
stopRendering();
|
|
|
|
for (int i = 0; i < _chunks.count(); i++)
|
|
{
|
|
delete _chunks[i];
|
|
}
|
|
rendererDelete(_renderer);
|
|
}
|
|
|
|
void WidgetExplorer::startRendering()
|
|
{
|
|
// Add terrain
|
|
int chunks = 20;
|
|
double size = 400.0;
|
|
double chunksize = size / (double)chunks;
|
|
double start = -size / 2.0;
|
|
double water_height = _renderer->water->getHeightInfo(_renderer).base_height;
|
|
for (int i = 0; i < chunks; i++)
|
|
{
|
|
for (int j = 0; j < chunks; j++)
|
|
{
|
|
ExplorerChunkTerrain* chunk = new ExplorerChunkTerrain(_renderer, start + chunksize * (double)i, start + chunksize * (double)j, chunksize, chunks, water_height);
|
|
_chunks.append(chunk);
|
|
_updateQueue.append(chunk);
|
|
}
|
|
}
|
|
|
|
// Add skybox
|
|
for (int orientation = 0; orientation < 5; orientation++)
|
|
{
|
|
ExplorerChunkSky* chunk = new ExplorerChunkSky(_renderer, 500.0, (SkyboxOrientation)orientation);
|
|
_chunks.append(chunk);
|
|
_updateQueue.append(chunk);
|
|
}
|
|
|
|
// Start rendering workers
|
|
int nbcore;
|
|
_alive = true;
|
|
|
|
nbcore = QThread::idealThreadCount();
|
|
if (nbcore < 1)
|
|
{
|
|
nbcore = 1;
|
|
}
|
|
|
|
for (int i = 0; i < nbcore; i++)
|
|
{
|
|
_threads.append(new ChunkMaintenanceThread(this));
|
|
}
|
|
for (int i = 0; i < _threads.count(); i++)
|
|
{
|
|
_threads[i]->start();
|
|
}
|
|
}
|
|
|
|
void WidgetExplorer::stopRendering()
|
|
{
|
|
for (int i = 0; i < _threads.count(); i++)
|
|
{
|
|
_threads[i]->askStop();
|
|
}
|
|
_alive = false;
|
|
for (int i = 0; i < _threads.count(); i++)
|
|
{
|
|
_threads[i]->wait();
|
|
}
|
|
}
|
|
|
|
bool _cmpChunks(const BaseExplorerChunk* c1, const BaseExplorerChunk* c2)
|
|
{
|
|
return c1->priority > c2->priority;
|
|
}
|
|
|
|
void WidgetExplorer::performChunksMaintenance()
|
|
{
|
|
BaseExplorerChunk* chunk;
|
|
|
|
_lock_chunks.lock();
|
|
if (_updateQueue.count() > 0)
|
|
{
|
|
chunk = _updateQueue.takeFirst();
|
|
_lock_chunks.unlock();
|
|
}
|
|
else
|
|
{
|
|
_lock_chunks.unlock();
|
|
return;
|
|
}
|
|
|
|
if (chunk->maintain())
|
|
{
|
|
if (!_alive)
|
|
{
|
|
return;
|
|
}
|
|
|
|
_updated = true;
|
|
}
|
|
|
|
_lock_chunks.lock();
|
|
_updateQueue.append(chunk);
|
|
_lock_chunks.unlock();
|
|
}
|
|
|
|
void WidgetExplorer::resetCamera()
|
|
{
|
|
cameraCopyDefinition(_base_camera, &_current_camera);
|
|
updateGL();
|
|
}
|
|
|
|
void WidgetExplorer::validateCamera()
|
|
{
|
|
cameraCopyDefinition(&_current_camera, _base_camera);
|
|
}
|
|
|
|
void WidgetExplorer::keyPressEvent(QKeyEvent* event)
|
|
{
|
|
double factor;
|
|
|
|
if (event->modifiers() & Qt::ControlModifier)
|
|
{
|
|
factor = 0.1;
|
|
}
|
|
else if (event->modifiers() & Qt::ShiftModifier)
|
|
{
|
|
factor = 10.0;
|
|
}
|
|
else
|
|
{
|
|
factor = 1.0;
|
|
}
|
|
factor *= 3.0;
|
|
|
|
if (event->key() == Qt::Key_Up)
|
|
{
|
|
cameraStrafeForward(&_current_camera, 0.1 * factor);
|
|
updateGL();
|
|
}
|
|
else if (event->key() == Qt::Key_Down)
|
|
{
|
|
cameraStrafeForward(&_current_camera, -0.1 * factor);
|
|
updateGL();
|
|
}
|
|
else if (event->key() == Qt::Key_Right)
|
|
{
|
|
cameraStrafeRight(&_current_camera, 0.1 * factor);
|
|
updateGL();
|
|
}
|
|
else if (event->key() == Qt::Key_Left)
|
|
{
|
|
cameraStrafeRight(&_current_camera, -0.1 * factor);
|
|
updateGL();
|
|
}
|
|
else if (event->key() == Qt::Key_PageUp)
|
|
{
|
|
cameraStrafeUp(&_current_camera, 0.1 * factor);
|
|
updateGL();
|
|
}
|
|
else if (event->key() == Qt::Key_PageDown)
|
|
{
|
|
cameraStrafeUp(&_current_camera, -0.1 * factor);
|
|
updateGL();
|
|
}
|
|
else
|
|
{
|
|
QGLWidget::keyPressEvent(event);
|
|
}
|
|
}
|
|
|
|
void WidgetExplorer::mousePressEvent(QMouseEvent* event)
|
|
{
|
|
_last_mouse_x = event->x();
|
|
_last_mouse_y = event->y();
|
|
|
|
event->ignore();
|
|
}
|
|
|
|
void WidgetExplorer::mouseMoveEvent(QMouseEvent* event)
|
|
{
|
|
double factor;
|
|
|
|
if (event->modifiers() & Qt::ControlModifier)
|
|
{
|
|
factor = 0.01;
|
|
}
|
|
else if (event->modifiers() & Qt::ShiftModifier)
|
|
{
|
|
factor = 1.0;
|
|
}
|
|
else
|
|
{
|
|
factor = 0.1;
|
|
}
|
|
factor *= 0.2;
|
|
|
|
if (event->buttons() & Qt::LeftButton)
|
|
{
|
|
cameraRotateYaw(&_current_camera, (double)(event->x() - _last_mouse_x) * factor * 0.1);
|
|
cameraRotatePitch(&_current_camera, (double)(event->y() - _last_mouse_y) * factor * 0.1);
|
|
updateGL();
|
|
event->accept();
|
|
}
|
|
else if (event->buttons() & Qt::RightButton)
|
|
{
|
|
cameraStrafeRight(&_current_camera, (double)(_last_mouse_x - event->x()) * factor);
|
|
cameraStrafeUp(&_current_camera, (double)(event->y() - _last_mouse_y) * factor);
|
|
updateGL();
|
|
event->accept();
|
|
}
|
|
else
|
|
{
|
|
event->ignore();
|
|
}
|
|
|
|
_last_mouse_x = event->x();
|
|
_last_mouse_y = event->y();
|
|
}
|
|
|
|
void WidgetExplorer::wheelEvent(QWheelEvent* event)
|
|
{
|
|
double factor;
|
|
|
|
if (event->modifiers() & Qt::ControlModifier)
|
|
{
|
|
factor = 0.01;
|
|
}
|
|
else if (event->modifiers() & Qt::ShiftModifier)
|
|
{
|
|
factor = 1.0;
|
|
}
|
|
else
|
|
{
|
|
factor = 0.1;
|
|
}
|
|
factor *= 0.03;
|
|
|
|
if (event->orientation() == Qt::Vertical)
|
|
{
|
|
cameraStrafeForward(&_current_camera, (double)event->delta() * factor);
|
|
updateGL();
|
|
}
|
|
event->accept();
|
|
}
|
|
|
|
void WidgetExplorer::timerEvent(QTimerEvent*)
|
|
{
|
|
if (!_inited)
|
|
{
|
|
_inited = true;
|
|
startRendering();
|
|
}
|
|
|
|
if (_updated)
|
|
{
|
|
_updated = false;
|
|
updateGL();
|
|
}
|
|
|
|
for (int i = 0; i < _chunks.count(); i++)
|
|
{
|
|
_chunks[i]->updatePriority(&_current_camera);
|
|
}
|
|
_lock_chunks.lock();
|
|
qSort(_updateQueue.begin(), _updateQueue.end(), _cmpChunks);
|
|
_lock_chunks.unlock();
|
|
}
|
|
|
|
void WidgetExplorer::initializeGL()
|
|
{
|
|
exploringInit();
|
|
}
|
|
|
|
void WidgetExplorer::resizeGL(int w, int h)
|
|
{
|
|
cameraSetRenderSize(&_current_camera, w, h);
|
|
exploringSetViewPort(w, h, &_current_camera);
|
|
}
|
|
|
|
void WidgetExplorer::paintGL()
|
|
{
|
|
GLenum error_code;
|
|
QTime start_time;
|
|
double frame_time;
|
|
WaterDefinition* water = _renderer->water->definition;
|
|
|
|
cameraCopyDefinition(&_current_camera, &_renderer->render_camera);
|
|
cameraValidateDefinition(&_current_camera, 1);
|
|
|
|
start_time = QTime::currentTime();
|
|
|
|
glMatrixMode(GL_MODELVIEW);
|
|
glLoadIdentity();
|
|
gluLookAt(_current_camera.location.x, _current_camera.location.y, _current_camera.location.z, _current_camera.target.x, _current_camera.target.y, _current_camera.target.z, _current_camera.up.x, _current_camera.up.y, _current_camera.up.z);
|
|
|
|
// Background
|
|
glClearColor(0.0, 0.0, 0.0, 0.0);
|
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
|
|
|
// Render water
|
|
glDisable(GL_TEXTURE_2D);
|
|
glColor3f(water->material.base.r, water->material.base.g, water->material.base.b);
|
|
glBegin(GL_QUADS);
|
|
glVertex3f(_current_camera.location.x - 500.0, water->height, _current_camera.location.z - 500.0);
|
|
glVertex3f(_current_camera.location.x - 500.0, water->height, _current_camera.location.z + 500.0);
|
|
glVertex3f(_current_camera.location.x + 500.0, water->height, _current_camera.location.z + 500.0);
|
|
glVertex3f(_current_camera.location.x + 500.0, water->height, _current_camera.location.z - 500.0);
|
|
glEnd();
|
|
|
|
// Render chunks
|
|
glEnable(GL_TEXTURE_2D);
|
|
for (int i = 0; i < _chunks.count(); i++)
|
|
{
|
|
glColor3f(1.0, 1.0, 1.0);
|
|
_chunks[i]->render(this);
|
|
}
|
|
|
|
frame_time = 0.001 * (double)start_time.msecsTo(QTime::currentTime());
|
|
|
|
_average_frame_time = _average_frame_time * 0.8 + frame_time * 0.2;
|
|
//printf("%d %f\n", quality, average_frame_time);
|
|
|
|
if (_average_frame_time > 0.1 && _quality > 1)
|
|
{
|
|
_quality--;
|
|
}
|
|
if (_average_frame_time < 0.04 && _quality < 10)
|
|
{
|
|
_quality++;
|
|
}
|
|
|
|
// Messages
|
|
if (!_inited)
|
|
{
|
|
glColor3f(0.0, 0.0, 0.0);
|
|
renderText(6, height() - 10, tr("Please wait while loading scene..."));
|
|
glColor3f(1.0, 1.0, 1.0);
|
|
renderText(5, height() - 9, tr("Please wait while loading scene..."));
|
|
}
|
|
|
|
while ((error_code = glGetError()) != GL_NO_ERROR)
|
|
{
|
|
logDebug(QString("[OpenGL] ERROR : ") + (const char*)gluErrorString(error_code));
|
|
}
|
|
}
|