vcglib/apps/nexus/nexusview.cpp

353 lines
9.4 KiB
C++
Raw Normal View History

2004-07-02 19:41:57 +02:00
/****************************************************************************
* VCGLib o o *
* Visual and Computer Graphics Library o o *
* _ O _ *
* Copyright(C) 2004 \/)\/ *
* Visual Computing Lab /\/| *
* ISTI - Italian National Research Council | *
* \ *
* All rights reserved. *
* *
* 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. *
* *
* 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 (http://www.gnu.org/licenses/gpl.txt) *
* for more details. *
* *
****************************************************************************/
/****************************************************************************
History
$Log: not supported by cvs2svn $
2004-10-14 15:46:34 +02:00
Revision 1.12 2004/10/09 14:46:47 ponchio
Windows porting small changes.
2004-10-09 16:46:47 +02:00
Revision 1.11 2004/10/04 16:49:54 ponchio
Daily backup. Preparing for compression.
Revision 1.10 2004/10/01 16:54:57 ponchio
Daily backup.
2004-10-01 18:54:57 +02:00
Revision 1.9 2004/09/30 23:56:33 ponchio
Backup (added strips and normals)
2004-10-01 01:56:33 +02:00
Revision 1.8 2004/09/30 00:27:42 ponchio
Lot of changes. Backup.
2004-09-30 02:27:42 +02:00
Revision 1.7 2004/09/28 10:26:35 ponchio
Backup
2004-09-28 12:26:35 +02:00
Revision 1.6 2004/09/17 15:25:09 ponchio
First working (hopefully) release.
2004-09-17 17:25:59 +02:00
Revision 1.5 2004/09/16 14:25:16 ponchio
Backup. (lot of changes).
2004-09-16 16:25:16 +02:00
Revision 1.4 2004/08/27 00:38:34 ponchio
Minor changes.
2004-08-27 02:38:34 +02:00
Revision 1.3 2004/07/15 14:32:49 ponchio
Debug.
2004-07-15 16:32:49 +02:00
Revision 1.2 2004/07/05 15:49:39 ponchio
Windows (DevCpp, mingw) port.
2004-07-05 17:49:39 +02:00
Revision 1.1 2004/07/04 15:30:00 ponchio
Changed directory structure.
2004-07-04 17:30:22 +02:00
Revision 1.2 2004/07/04 15:16:01 ponchio
*** empty log message ***
2004-07-04 17:16:01 +02:00
Revision 1.1 2004/07/02 17:41:57 ponchio
Created.
2004-07-02 19:41:57 +02:00
Revision 1.3 2004/07/02 13:03:34 ponchio
*** empty log message ***
Revision 1.2 2004/07/01 21:33:46 ponchio
Added remap reading.
Revision 1.1 2004/06/23 00:10:38 ponchio
Created
****************************************************************************/
2004-10-09 16:46:47 +02:00
#include <apps/nexus/nexusmt.h>
2004-07-02 19:41:57 +02:00
#include <iostream>
using namespace std;
#include <SDL/SDL.h>
2004-10-09 16:46:47 +02:00
#ifdef WIN32
#include <windows.h>
#endif
2004-07-02 19:41:57 +02:00
#include <GL/gl.h>
#include <GL/glu.h>
2004-10-09 16:46:47 +02:00
2004-09-28 12:26:35 +02:00
#include <wrap/gui/trackball.h>
2004-10-14 15:46:34 +02:00
#include "stopwatch.h"
2004-09-28 12:26:35 +02:00
2004-07-02 19:41:57 +02:00
using namespace vcg;
using namespace nxs;
bool fullscreen = false;
int width =1024;
int height = 768;
//TrackHand hand;
SDL_Surface *screen = NULL;
2004-10-01 18:54:57 +02:00
bool init(const string &str) {
2004-07-02 19:41:57 +02:00
if(SDL_Init(SDL_INIT_VIDEO) != 0) {
return false;
}
const SDL_VideoInfo *info = SDL_GetVideoInfo();
int bpp = info->vfmt->BitsPerPixel;
SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 5);
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
int flags = SDL_OPENGL;
if(fullscreen)
flags |= SDL_FULLSCREEN;
screen = SDL_SetVideoMode(width, height, bpp, flags);
if(!screen) {
return false;
}
SDL_WM_SetIcon(SDL_LoadBMP("inspector.bmp"), NULL);
2004-10-01 18:54:57 +02:00
SDL_WM_SetCaption(str.c_str(), str.c_str());
2004-07-02 19:41:57 +02:00
glDisable(GL_DITHER);
glShadeModel(GL_SMOOTH);
glHint( GL_FOG_HINT, GL_NICEST );
glEnable(GL_DEPTH_TEST);
glDepthFunc( GL_LEQUAL );
glDisable(GL_LIGHTING);
glEnableClientState(GL_VERTEX_ARRAY);
return true;
}
int main(int argc, char *argv[]) {
2004-09-16 16:25:16 +02:00
int level = 0;
int apatch = -1;
2004-10-01 18:54:57 +02:00
float error = 4;
2004-09-28 12:26:35 +02:00
Trackball track;
2004-10-09 16:46:47 +02:00
// int option;
2004-09-16 16:25:16 +02:00
2004-10-01 18:54:57 +02:00
if(argc != 2) {
2004-10-14 15:46:34 +02:00
cerr << "Usage: " << argv[0] << " <nexus file>\n"; return -1;
2004-09-16 16:25:16 +02:00
}
2004-08-27 02:38:34 +02:00
2004-09-16 16:25:16 +02:00
NexusMt nexus;
2004-10-01 18:54:57 +02:00
if(!nexus.Load(argv[1])) {
2004-07-02 19:41:57 +02:00
cerr << "Could not load nexus file: " << argv[1] << endl;
return -1;
}
Sphere3f sphere = nexus.sphere;
2004-10-01 18:54:57 +02:00
if(!init(argv[1])) {
2004-07-02 19:41:57 +02:00
cerr << "Could not init SDL window\n";
return -1;
}
2004-09-28 12:26:35 +02:00
2004-09-30 02:27:42 +02:00
// FrustumPolicy frustum_policy;
2004-10-01 18:54:57 +02:00
cerr << "Commands: \n"
" q: quit\n"
" s: screen error extraction\n"
" g: geometry error extraction\n"
" p: draw points\n"
2004-10-14 15:46:34 +02:00
" t: show statistics\n"
" r: toggle realtime mode (TODO)\n"
" b: increase memory buffer\n"
" B: decrease memory buffer\n"
2004-10-01 18:54:57 +02:00
" d: debug mode (show patches colored)\n"
" m: smooth mode\n"
" c: show colors\n"
" n: show normals\n"
2004-10-14 15:46:34 +02:00
" u: rotate model\n"
2004-10-01 18:54:57 +02:00
" -: decrease error\n"
" +: increase error (= too)\n";
2004-09-28 12:26:35 +02:00
2004-10-14 15:46:34 +02:00
StopWatch watch;
2004-09-28 12:26:35 +02:00
2004-10-01 18:54:57 +02:00
bool rotate = false;
2004-09-17 17:25:59 +02:00
bool show_borders = true;
2004-09-30 02:27:42 +02:00
bool show_colors = true;
bool show_normals = true;
2004-10-14 15:46:34 +02:00
bool show_statistics = true;
2004-10-01 18:54:57 +02:00
NexusMt::Mode mode = NexusMt::SMOOTH;
NexusMt::PolicyKind policy = NexusMt::FRUSTUM;
2004-07-02 19:41:57 +02:00
glClearColor(0, 0, 0, 0);
2004-07-15 16:32:49 +02:00
glEnable(GL_LIGHTING);
glEnable(GL_LIGHT0);
glEnable(GL_NORMALIZE);
glEnable(GL_COLOR_MATERIAL);
2004-10-01 01:56:33 +02:00
glEnable(GL_CULL_FACE);
2004-07-02 19:41:57 +02:00
int quit = 0;
2004-10-01 18:54:57 +02:00
SDL_Event event;
2004-07-02 19:41:57 +02:00
int x, y;
float alpha = 0;
2004-10-01 18:54:57 +02:00
bool redraw = false;
while( !quit ) {
bool first = true;
SDL_WaitEvent(&event);
while( first || SDL_PollEvent( &event ) ){
first = false;
2004-07-02 19:41:57 +02:00
switch( event.type ) {
2004-09-28 12:26:35 +02:00
case SDL_QUIT: quit = 1; break;
case SDL_KEYDOWN:
switch(event.key.keysym.sym) {
case SDLK_RCTRL:
case SDLK_LCTRL:
track.ButtonDown(Trackball::KEY_CTRL); break;
2004-09-28 12:26:35 +02:00
case SDLK_q: exit(0); break;
2004-10-01 18:54:57 +02:00
case SDLK_b: show_borders = !show_borders; break;
case SDLK_c: show_colors = !show_colors; break;
case SDLK_n: show_normals = !show_normals; break;
2004-10-14 15:46:34 +02:00
case SDLK_9: nexus.patches.ram_size *= 0.8; break;
case SDLK_0: nexus.patches.ram_size *= 1.2; break;
2004-09-30 02:27:42 +02:00
2004-10-01 18:54:57 +02:00
case SDLK_s: policy = NexusMt::FRUSTUM; break;
case SDLK_p: mode = NexusMt::POINTS; break;
case SDLK_d: mode = NexusMt::DEBUG; break;
case SDLK_m: mode = NexusMt::SMOOTH; break;
2004-09-30 02:27:42 +02:00
2004-09-28 12:26:35 +02:00
case SDLK_r:
case SDLK_SPACE: rotate = !rotate; break;
2004-10-14 15:46:34 +02:00
case SDLK_MINUS: error *= 0.9f; break;
2004-09-28 12:26:35 +02:00
case SDLK_EQUALS:
2004-10-14 15:46:34 +02:00
case SDLK_PLUS: error *= 1.1f; break;
2004-09-28 12:26:35 +02:00
}
break;
case SDL_KEYUP:
switch(event.key.keysym.sym) {
case SDLK_RCTRL:
case SDLK_LCTRL:
track.ButtonUp(Trackball::KEY_CTRL); break;
}
break;
case SDL_MOUSEBUTTONDOWN:
2004-09-28 12:26:35 +02:00
x = event.button.x;
y = height - event.button.y;
2004-10-09 16:46:47 +02:00
#ifdef SDL_BUTTON_WHEELUP
if(event.button.button == SDL_BUTTON_WHEELUP)
2004-09-28 12:26:35 +02:00
track.MouseWheel(1);
else if(event.button.button == SDL_BUTTON_WHEELDOWN)
2004-09-28 12:26:35 +02:00
track.MouseWheel(-1);
2004-10-09 16:46:47 +02:00
else
#endif
if(event.button.button == SDL_BUTTON_LEFT)
track.MouseDown(x, y, Trackball::BUTTON_LEFT);
else if(event.button.button == SDL_BUTTON_RIGHT)
track.MouseDown(x, y, Trackball::BUTTON_RIGHT);
2004-07-02 19:41:57 +02:00
break;
2004-09-28 12:26:35 +02:00
case SDL_MOUSEBUTTONUP:
x = event.button.x;
y = height - event.button.y;
if(event.button.button == SDL_BUTTON_LEFT)
track.MouseUp(x, y, Trackball::BUTTON_LEFT);
else if(event.button.button == SDL_BUTTON_RIGHT)
track.MouseUp(x, y, Trackball::BUTTON_RIGHT);
2004-09-28 12:26:35 +02:00
break;
case SDL_MOUSEMOTION:
while(SDL_PeepEvents(&event, 1, SDL_GETEVENT, SDL_MOUSEMOTIONMASK));
x = event.motion.x;
y = height - event.motion.y;
track.MouseMove(x, y);
break;
2004-10-01 18:54:57 +02:00
case SDL_VIDEOEXPOSE:
2004-07-02 19:41:57 +02:00
default: break;
}
2004-10-01 18:54:57 +02:00
redraw = true;
}
2004-09-30 02:27:42 +02:00
2004-10-01 18:54:57 +02:00
if(!redraw) continue;
redraw = false;
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(40, 1, 0.1, 100);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
gluLookAt(0,0,5, 0,0,0, 0,1,0);
2004-07-02 19:41:57 +02:00
2004-10-01 18:54:57 +02:00
glRotatef(alpha, 0, 1, 0);
if(rotate) {
alpha++;
if(alpha > 360) alpha = 0;
SDL_Event redraw;
redraw.type = SDL_VIDEOEXPOSE;
SDL_PushEvent(&redraw);
2004-09-30 02:27:42 +02:00
}
2004-10-01 18:54:57 +02:00
track.GetView();
track.Apply();
float scale = 2/sphere.Radius();
glScalef(scale, scale, scale);
Point3f center = sphere.Center();
glTranslatef(-center[0], -center[1], -center[2]);
Point3f &p = nexus.sphere.Center();
float r = nexus.sphere.Radius();
2004-10-09 16:46:47 +02:00
glColor3f(0.8f, 0.8f, 0.8f);
2004-10-01 18:54:57 +02:00
nexus.SetMode(mode);
nexus.SetPolicy(policy, error);
nexus.SetComponent(NexusMt::COLOR, show_colors);
nexus.SetComponent(NexusMt::NORMAL, show_normals);
2004-10-14 15:46:34 +02:00
watch.Restart();
2004-10-01 18:54:57 +02:00
nexus.Render();
2004-10-14 15:46:34 +02:00
if(show_statistics) {
cerr << "Error: " << error << endl;
cerr << "Ram used: " << nexus.patches.ram_used << endl;
cerr << "Ram size: " << nexus.patches.ram_size << endl;
cerr << "Ram flushed: " << nexus.patches.ram_flushed << endl;
cerr << "Ram readed: " << nexus.patches.ram_readed << endl;
nexus.patches.ram_flushed = 0;
nexus.patches.ram_readed = 0;
cerr << "Time for frame: " << watch.Elapsed() << endl;
}
2004-10-01 18:54:57 +02:00
SDL_GL_SwapBuffers();
2004-07-02 19:41:57 +02:00
}
2004-09-30 02:27:42 +02:00
// Clean up
2004-07-02 19:41:57 +02:00
SDL_Quit();
return -1;
}