1
0
Fork 0
flightgear/src/Cockpit/panel.cxx

727 lines
16 KiB
C++
Raw Normal View History

2000-02-15 03:30:01 +00:00
// panel.cxx - default, 2D single-engine prop instrument panel
//
2000-02-15 03:30:01 +00:00
// Written by David Megginson, started January 2000.
//
2000-02-15 03:30:01 +00:00
// 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.
//
2000-02-15 03:30:01 +00:00
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
//
2000-02-15 03:30:01 +00:00
// $Id$
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifdef HAVE_WINDOWS_H
# include <windows.h>
#endif
2000-02-15 03:30:01 +00:00
#include <string.h>
2000-02-15 03:30:01 +00:00
#include <plib/ssg.h>
#include <plib/fnt.h>
2000-02-16 23:01:03 +00:00
#include <simgear/debug/logstream.hxx>
#include <simgear/misc/fgpath.hxx>
#include <Main/options.hxx>
#include <Main/views.hxx>
#include <Objects/texload.h>
#include "hud.hxx"
#include "panel.hxx"
////////////////////////////////////////////////////////////////////////
// Implementation of FGTextureManager.
////////////////////////////////////////////////////////////////////////
map<string,ssgTexture *> FGTextureManager::_textureMap;
ssgTexture *
FGTextureManager::createTexture (const string &relativePath)
{
ssgTexture * texture = _textureMap[relativePath];
if (texture == 0) {
cerr << "Texture " << relativePath << " does not yet exist" << endl;
FGPath tpath(current_options.get_fg_root());
tpath.append(relativePath);
texture = new ssgTexture((char *)tpath.c_str(), false, false);
_textureMap[relativePath] = texture;
if (_textureMap[relativePath] == 0)
cerr << "Texture *still* doesn't exist" << endl;
cerr << "Created texture " << relativePath
<< " handle=" << texture->getHandle() << endl;
}
return texture;
}
////////////////////////////////////////////////////////////////////////
// Implementation of FGPanel.
////////////////////////////////////////////////////////////////////////
FGPanel * current_panel = NULL;
FGPanel::FGPanel (int x, int y, int w, int h)
: _mouseDown(false),
_mouseInstrument(0),
_x(x), _y(y), _w(w), _h(h)
2000-02-15 03:30:01 +00:00
{
setVisibility(current_options.get_panel_status());
_panel_h = (int)(h * 0.5768 + 1);
}
FGPanel::~FGPanel ()
{
instrument_list_type::iterator current = _instruments.begin();
instrument_list_type::iterator last = _instruments.end();
for ( ; current != last; ++current) {
delete *current;
*current = 0;
2000-02-15 03:30:01 +00:00
}
}
void
FGPanel::addInstrument (FGPanelInstrument * instrument)
{
_instruments.push_back(instrument);
}
2000-02-15 03:30:01 +00:00
void
FGPanel::update () const
2000-02-15 03:30:01 +00:00
{
// Do nothing if the panel isn't visible.
if (!_visibility)
return;
// If the mouse is down, do something
if (_mouseDown) {
_mouseDelay--;
if (_mouseDelay < 0) {
_mouseInstrument->doMouseAction(_mouseButton, _mouseX, _mouseY);
_mouseDelay = 2;
}
}
// Now, draw the panel
2000-02-15 03:30:01 +00:00
glMatrixMode(GL_PROJECTION);
glPushMatrix();
glLoadIdentity();
gluOrtho2D(_x, _x + _w, _y, _y + _h);
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glLoadIdentity();
// Draw the background
glEnable(GL_TEXTURE_2D);
glDisable(GL_LIGHTING);
2000-03-17 06:16:15 +00:00
glEnable(GL_BLEND);
glEnable(GL_ALPHA_TEST);
glEnable(GL_COLOR_MATERIAL);
2000-05-27 06:40:55 +00:00
// glColor4f(1.0, 1.0, 1.0, 1.0);
if ( cur_light_params.sun_angle * RAD_TO_DEG < 95.0 ) {
glColor4fv( cur_light_params.scene_diffuse );
} else {
glColor4f(0.7, 0.2, 0.2, 1.0);
}
glBindTexture(GL_TEXTURE_2D, _bg->getHandle());
2000-02-15 03:30:01 +00:00
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
2000-02-15 03:30:01 +00:00
glBegin(GL_POLYGON);
glTexCoord2f(0.0, 0.0); glVertex3f(_x, _y, 0);
glTexCoord2f(10.0, 0.0); glVertex3f(_x + _w, _y, 0);
glTexCoord2f(10.0, 5.0); glVertex3f(_x + _w, _y + _panel_h, 0);
glTexCoord2f(0.0, 5.0); glVertex3f(_x, _y + _panel_h, 0);
glEnd();
// Draw the instruments.
instrument_list_type::const_iterator current = _instruments.begin();
instrument_list_type::const_iterator end = _instruments.end();
for ( ; current != end; current++) {
FGPanelInstrument * instr = *current;
glLoadIdentity();
glTranslated(instr->getXPos(), instr->getYPos(), 0);
instr->draw();
}
2000-02-15 03:30:01 +00:00
glMatrixMode(GL_PROJECTION);
glPopMatrix();
glMatrixMode(GL_MODELVIEW);
glPopMatrix();
ssgForceBasicState();
glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
}
void
FGPanel::setVisibility (bool visibility)
{
_visibility = visibility;
}
bool
FGPanel::getVisibility () const
{
return _visibility;
}
void
FGPanel::setBackground (ssgTexture * texture)
{
_bg = texture;
}
bool
FGPanel::doMouseAction (int button, int updown, int x, int y)
{
// Note a released button and return
// cerr << "Doing mouse action\n";
if (updown == 1) {
_mouseDown = false;
_mouseInstrument = 0;
return true;
}
x = (int)(((float)x / current_view.get_winWidth()) * _w);
y = (int)(_h - (((float)y / current_view.get_winHeight()) * _h));
for (int i = 0; i < _instruments.size(); i++) {
FGPanelInstrument *inst = _instruments[i];
int ix = inst->getXPos();
int iy = inst->getYPos();
int iw = inst->getWidth() / 2;
int ih = inst->getHeight() / 2;
if (x >= ix - iw && x < ix + iw && y >= iy - ih && y < iy + ih) {
// cout << "Do mouse action for component " << i << '\n';
_mouseDown = true;
_mouseDelay = 20;
_mouseInstrument = inst;
_mouseButton = button;
_mouseX = x - ix;
_mouseY = y - iy;
// Always do the action once.
_mouseInstrument->doMouseAction(_mouseButton, _mouseX, _mouseY);
return true;
}
}
// cout << "Did not click on an instrument\n";
return false;
}
////////////////////////////////////////////////////////////////////////
// Implementation of FGAdjustAction.
////////////////////////////////////////////////////////////////////////
FGAdjustAction::FGAdjustAction (SGValue * value, float increment,
float min, float max, bool wrap=false)
: _value(value), _increment(increment), _min(min), _max(max), _wrap(wrap)
{
}
FGAdjustAction::~FGAdjustAction ()
{
}
void
FGAdjustAction::doAction ()
{
float val = _value->getFloatValue();
// cout << "Do action; value=" << value << '\n';
val += _increment;
if (val < _min) {
val = (_wrap ? _max : _min);
} else if (val > _max) {
val = (_wrap ? _min : _max);
}
// cout << "New value is " << value << '\n';
_value->setDoubleValue(val);
}
////////////////////////////////////////////////////////////////////////
// Implementation of FGSwapAction.
////////////////////////////////////////////////////////////////////////
FGSwapAction::FGSwapAction (SGValue * value1, SGValue * value2)
: _value1(value1), _value2(value2)
{
}
FGSwapAction::~FGSwapAction ()
{
}
void
FGSwapAction::doAction ()
{
float val = _value1->getFloatValue();
_value1->setDoubleValue(_value2->getFloatValue());
_value2->setDoubleValue(val);
}
////////////////////////////////////////////////////////////////////////
// Implementation of FGToggleAction.
////////////////////////////////////////////////////////////////////////
FGToggleAction::FGToggleAction (SGValue * value)
: _value(value)
{
}
FGToggleAction::~FGToggleAction ()
{
}
void
FGToggleAction::doAction ()
{
_value->setBoolValue(!(_value->getBoolValue()));
}
////////////////////////////////////////////////////////////////////////
2000-02-15 03:30:01 +00:00
// Implementation of FGPanelInstrument.
////////////////////////////////////////////////////////////////////////
2000-02-15 03:30:01 +00:00
FGPanelInstrument::FGPanelInstrument ()
{
2000-02-15 03:30:01 +00:00
setPosition(0, 0);
setSize(0, 0);
}
2000-02-15 03:30:01 +00:00
FGPanelInstrument::FGPanelInstrument (int x, int y, int w, int h)
{
setPosition(x, y);
setSize(w, h);
}
2000-02-15 03:30:01 +00:00
FGPanelInstrument::~FGPanelInstrument ()
{
action_list_type::iterator it = _actions.begin();
action_list_type::iterator last = _actions.end();
for ( ; it != last; it++) {
delete it->action;
}
2000-02-15 03:30:01 +00:00
}
void
FGPanelInstrument::setPosition (int x, int y)
{
2000-02-15 03:30:01 +00:00
_x = x;
_y = y;
}
2000-02-15 03:30:01 +00:00
void
FGPanelInstrument::setSize (int w, int h)
{
_w = w;
_h = h;
}
2000-02-15 03:30:01 +00:00
int
FGPanelInstrument::getXPos () const
{
return _x;
}
int
FGPanelInstrument::getYPos () const
{
return _y;
1999-01-07 19:25:53 +00:00
}
int
FGPanelInstrument::getWidth () const
{
return _w;
}
int
FGPanelInstrument::getHeight () const
{
return _h;
}
void
FGPanelInstrument::addAction (int button, int x, int y, int w, int h,
FGPanelAction * action)
{
FGPanelInstrument::inst_action act;
act.button = button;
act.x = x;
act.y = y;
act.w = w;
act.h = h;
act.action = action;
_actions.push_back(act);
}
// Coordinates relative to centre.
bool
FGPanelInstrument::doMouseAction (int button, int x, int y)
{
action_list_type::iterator it = _actions.begin();
action_list_type::iterator last = _actions.end();
// cout << "Mouse action at " << x << ',' << y << '\n';
for ( ; it != last; it++) {
// cout << "Trying action at " << it->x << ',' << it->y << ','
// << it->w <<',' << it->h << '\n';
if (button == it->button &&
x >= it->x && x < it->x + it->w && y >= it->y && y < it->y + it->h) {
it->action->doAction();
return true;
}
}
return false;
}
////////////////////////////////////////////////////////////////////////
// Implementation of FGLayeredInstrument.
////////////////////////////////////////////////////////////////////////
1999-01-07 19:25:53 +00:00
FGLayeredInstrument::FGLayeredInstrument (int x, int y, int w, int h)
2000-02-15 03:30:01 +00:00
: FGPanelInstrument(x, y, w, h)
{
}
FGLayeredInstrument::~FGLayeredInstrument ()
2000-02-15 03:30:01 +00:00
{
// FIXME: free layers
2000-02-15 03:30:01 +00:00
}
2000-02-15 03:30:01 +00:00
void
FGLayeredInstrument::draw ()
{
for (int i = 0; i < _layers.size(); i++) {
glPushMatrix();
glTranslatef(0.0, 0.0, (i / 100.0) + 0.1);
_layers[i]->draw();
glPopMatrix();
}
}
int
FGLayeredInstrument::addLayer (FGInstrumentLayer *layer)
{
int n = _layers.size();
if (layer->getWidth() == -1) {
layer->setWidth(getWidth());
}
if (layer->getHeight() == -1) {
layer->setHeight(getHeight());
}
_layers.push_back(layer);
return n;
}
int
FGLayeredInstrument::addLayer (CroppedTexture &texture,
int w = -1, int h = -1)
2000-02-15 03:30:01 +00:00
{
return addLayer(new FGTexturedLayer(texture, w, h));
2000-02-15 03:30:01 +00:00
}
1999-01-07 19:25:53 +00:00
2000-02-15 03:30:01 +00:00
void
FGLayeredInstrument::addTransformation (FGInstrumentLayer::transform_type type,
const SGValue * value,
float min, float max,
float factor, float offset)
2000-02-15 03:30:01 +00:00
{
int layer = _layers.size() - 1;
_layers[layer]->addTransformation(type, value, min, max, factor, offset);
1999-01-07 19:25:53 +00:00
}
void
FGLayeredInstrument::addTransformation (FGInstrumentLayer::transform_type type,
float offset)
{
addTransformation(type, 0, 0.0, 0.0, 1.0, offset);
}
////////////////////////////////////////////////////////////////////////
// Implementation of FGInstrumentLayer.
////////////////////////////////////////////////////////////////////////
FGInstrumentLayer::FGInstrumentLayer (int w, int h)
: _w(w),
_h(h)
2000-02-15 03:30:01 +00:00
{
1999-05-06 22:16:12 +00:00
}
1999-02-12 01:46:29 +00:00
FGInstrumentLayer::~FGInstrumentLayer ()
2000-02-15 03:30:01 +00:00
{
transformation_list::iterator it = _transformations.begin();
transformation_list::iterator end = _transformations.end();
while (it != end) {
delete *it;
it++;
}
}
2000-02-15 03:30:01 +00:00
void
FGInstrumentLayer::transform () const
{
transformation_list::const_iterator it = _transformations.begin();
transformation_list::const_iterator last = _transformations.end();
while (it != last) {
transformation *t = *it;
float val = (t->value == 0 ? 0.0 : t->value->getFloatValue());
if (val < t->min) {
val = t->min;
} else if (val > t->max) {
val = t->max;
}
val = val * t->factor + t->offset;
switch (t->type) {
case XSHIFT:
glTranslatef(val, 0.0, 0.0);
break;
case YSHIFT:
glTranslatef(0.0, val, 0.0);
break;
case ROTATION:
glRotatef(-val, 0.0, 0.0, 1.0);
break;
}
it++;
2000-02-15 03:30:01 +00:00
}
1998-11-09 23:38:50 +00:00
}
2000-02-15 03:30:01 +00:00
void
FGInstrumentLayer::addTransformation (transform_type type,
const SGValue * value,
float min, float max,
float factor, float offset)
{
transformation *t = new transformation;
t->type = type;
t->value = value;
t->min = min;
t->max = max;
t->factor = factor;
t->offset = offset;
_transformations.push_back(t);
1999-05-06 22:16:12 +00:00
}
////////////////////////////////////////////////////////////////////////
// Implementation of FGTexturedLayer.
////////////////////////////////////////////////////////////////////////
FGTexturedLayer::FGTexturedLayer (CroppedTexture &texture, int w, int h)
: FGInstrumentLayer(w, h)
{
setTexture(texture);
1999-05-06 22:16:12 +00:00
}
FGTexturedLayer::~FGTexturedLayer ()
{
1999-05-06 22:16:12 +00:00
}
2000-02-15 03:30:01 +00:00
void
FGTexturedLayer::draw ()
{
int w2 = _w / 2;
int h2 = _h / 2;
transform();
glBindTexture(GL_TEXTURE_2D, _texture->texture->getHandle());
glBegin(GL_POLYGON);
2000-05-27 06:40:55 +00:00
if ( cur_light_params.sun_angle * RAD_TO_DEG < 95.0 ) {
glColor4fv( cur_light_params.scene_diffuse );
} else {
glColor4f(0.7, 0.2, 0.2, 1.0);
}
glTexCoord2f(_texture->minX, _texture->minY); glVertex2f(-w2, -h2);
glTexCoord2f(_texture->maxX, _texture->minY); glVertex2f(w2, -h2);
glTexCoord2f(_texture->maxX, _texture->maxY); glVertex2f(w2, h2);
glTexCoord2f(_texture->minX, _texture->maxY); glVertex2f(-w2, h2);
glEnd();
2000-02-15 03:30:01 +00:00
}
2000-02-15 03:30:01 +00:00
////////////////////////////////////////////////////////////////////////
// Implementation of FGTextLayer.
2000-02-15 03:30:01 +00:00
////////////////////////////////////////////////////////////////////////
FGTextLayer::FGTextLayer (int w, int h, Chunk * chunk1, Chunk * chunk2,
Chunk * chunk3)
: FGInstrumentLayer(w, h)
2000-02-15 03:30:01 +00:00
{
_color[0] = _color[1] = _color[2] = 0.0;
2000-03-17 06:16:15 +00:00
_color[3] = 1.0;
if (chunk1)
addChunk(chunk1);
if (chunk2)
addChunk(chunk2);
if (chunk3)
addChunk(chunk3);
2000-02-15 03:30:01 +00:00
}
FGTextLayer::~FGTextLayer ()
2000-02-15 03:30:01 +00:00
{
chunk_list::iterator it = _chunks.begin();
chunk_list::iterator last = _chunks.end();
for ( ; it != last; it++) {
delete *it;
}
2000-02-15 03:30:01 +00:00
}
void
FGTextLayer::draw ()
2000-02-15 03:30:01 +00:00
{
glPushMatrix();
2000-03-17 06:16:15 +00:00
glColor4fv(_color);
transform();
_renderer.setFont(guiFntHandle);
_renderer.setPointSize(14);
_renderer.begin();
_renderer.start3f(0, 0, 0);
// Render each of the chunks.
chunk_list::const_iterator it = _chunks.begin();
chunk_list::const_iterator last = _chunks.end();
for ( ; it != last; it++) {
_renderer.puts((*it)->getValue());
}
_renderer.end();
2000-03-17 06:16:15 +00:00
glColor4f(1.0, 1.0, 1.0, 1.0); // FIXME
glPopMatrix();
2000-02-15 03:30:01 +00:00
}
2000-02-15 03:30:01 +00:00
void
FGTextLayer::addChunk (FGTextLayer::Chunk * chunk)
{
_chunks.push_back(chunk);
}
void
FGTextLayer::setColor (float r, float g, float b)
{
_color[0] = r;
_color[1] = g;
_color[2] = b;
2000-03-17 06:16:15 +00:00
_color[3] = 1.0;
}
void
FGTextLayer::setPointSize (const float size)
2000-02-15 03:30:01 +00:00
{
_renderer.setPointSize(size);
2000-02-15 03:30:01 +00:00
}
2000-02-15 03:30:01 +00:00
void
FGTextLayer::setFont(fntFont * font)
{
_renderer.setFont(font);
1999-05-06 22:16:12 +00:00
}
2000-02-15 03:30:01 +00:00
////////////////////////////////////////////////////////////////////////
// Implementation of FGTextLayer::Chunk.
////////////////////////////////////////////////////////////////////////
FGTextLayer::Chunk::Chunk (char * text, char * fmt = "%s")
: _type(FGTextLayer::TEXT), _fmt(fmt)
{
_value._text = text;
}
FGTextLayer::Chunk::Chunk (ChunkType type, const SGValue * value,
char * fmt = 0, float mult = 1.0)
: _type(type), _fmt(fmt), _mult(mult)
{
if (_fmt == 0) {
if (type == TEXT_VALUE)
_fmt = "%s";
else
_fmt = "%.2f";
}
_value._value = value;
}
char *
FGTextLayer::Chunk::getValue () const
{
switch (_type) {
case TEXT:
sprintf(_buf, _fmt, _value._text);
return _buf;
case TEXT_VALUE:
sprintf(_buf, _fmt, _value._value->getStringValue().c_str());
break;
case DOUBLE_VALUE:
sprintf(_buf, _fmt, _value._value->getFloatValue() * _mult);
break;
}
return _buf;
}
////////////////////////////////////////////////////////////////////////
// Implementation of FGSwitchLayer.
////////////////////////////////////////////////////////////////////////
FGSwitchLayer::FGSwitchLayer (int w, int h, const SGValue * value,
FGInstrumentLayer * layer1,
FGInstrumentLayer * layer2)
: FGInstrumentLayer(w, h), _value(value), _layer1(layer1), _layer2(layer2)
{
}
FGSwitchLayer::~FGSwitchLayer ()
{
delete _layer1;
delete _layer2;
}
void
FGSwitchLayer::draw ()
{
transform();
if (_value->getBoolValue()) {
_layer1->draw();
} else {
_layer2->draw();
}
}
2000-02-15 03:30:01 +00:00
// end of panel.cxx