diff options
| author | jacob1 <jfu614@gmail.com> | 2013-06-21 00:29:20 (GMT) |
|---|---|---|
| committer | jacob1 <jfu614@gmail.com> | 2013-06-21 00:29:20 (GMT) |
| commit | 3aac957e501a2fc5fde868f1fe973c523968357e (patch) | |
| tree | 08653e5d4338f8b1b444eaa6081bcc2ed45f9427 /src/gui/game/GameView.cpp | |
| parent | fcff2ecc7fdaf93c39086fa52ae6608982fd509c (diff) | |
| download | powder-3aac957e501a2fc5fde868f1fe973c523968357e.zip powder-3aac957e501a2fc5fde868f1fe973c523968357e.tar.gz | |
HUD displays the correct name of LIFE particles in the HUD, show mouse position in HUD on the edges of the screen
Diffstat (limited to 'src/gui/game/GameView.cpp')
| -rw-r--r-- | src/gui/game/GameView.cpp | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/src/gui/game/GameView.cpp b/src/gui/game/GameView.cpp index d84bc41..6746de6 100644 --- a/src/gui/game/GameView.cpp +++ b/src/gui/game/GameView.cpp @@ -606,7 +606,7 @@ bool GameView::GetDebugHUD() ui::Point GameView::GetMousePosition() { - return mousePosition; + return currentMouse; } void GameView::NotifyActiveToolsChanged(GameModel * sender) @@ -2025,21 +2025,22 @@ void GameView::OnDraw() sampleInfo.precision(2); if(sample.particle.type) { + int ctype = sample.particle.ctype; + if (sample.particle.type == PT_PIPE || sample.particle.type == PT_PPIP) + ctype = sample.particle.tmp&0xFF; if(showDebug) { - int ctype = sample.particle.ctype; - if (sample.particle.type == PT_PIPE || sample.particle.type == PT_PPIP) - ctype = sample.particle.tmp; - if (sample.particle.type == PT_LAVA && ctype > 0 && ctype < PT_NUM) - sampleInfo << "Molten " << c->ElementResolve(ctype); - else if((sample.particle.type == PT_PIPE || sample.particle.type == PT_PPIP) && ctype > 0 && ctype < PT_NUM) - sampleInfo << c->ElementResolve(sample.particle.type) << " with " << c->ElementResolve(ctype); + sampleInfo << "Molten " << c->ElementResolve(ctype, -1); + else if ((sample.particle.type == PT_PIPE || sample.particle.type == PT_PPIP) && ctype > 0 && ctype < PT_NUM) + sampleInfo << c->ElementResolve(sample.particle.type, -1) << " with " << c->ElementResolve(ctype, (int)sample.particle.pavg[1]); + else if (sample.particle.type == PT_LIFE) + sampleInfo << c->ElementResolve(sample.particle.type, sample.particle.ctype); else { - sampleInfo << c->ElementResolve(sample.particle.type); + sampleInfo << c->ElementResolve(sample.particle.type, sample.particle.ctype); if(ctype > 0 && ctype < PT_NUM) - sampleInfo << " (" << c->ElementResolve(ctype) << ")"; + sampleInfo << " (" << c->ElementResolve(ctype, -1) << ")"; else sampleInfo << " ()"; } @@ -2051,11 +2052,13 @@ void GameView::OnDraw() else { if (sample.particle.type == PT_LAVA && sample.particle.ctype > 0 && sample.particle.ctype < PT_NUM) - sampleInfo << "Molten " << c->ElementResolve(sample.particle.ctype); - else if((sample.particle.type == PT_PIPE || sample.particle.type == PT_PPIP) && sample.particle.tmp > 0 && sample.particle.tmp < PT_NUM) - sampleInfo << c->ElementResolve(sample.particle.type) << " with " << c->ElementResolve(sample.particle.tmp); + sampleInfo << "Molten " << c->ElementResolve(sample.particle.ctype, -1); + else if ((sample.particle.type == PT_PIPE || sample.particle.type == PT_PPIP) && ctype > 0 && ctype < PT_NUM) + sampleInfo << c->ElementResolve(sample.particle.type, -1) << " with " << c->ElementResolve(ctype, (int)sample.particle.pavg[1]); + else if (sample.particle.type == PT_LIFE) + sampleInfo << c->ElementResolve(sample.particle.type, sample.particle.ctype); else - sampleInfo << c->ElementResolve(sample.particle.type); + sampleInfo << c->ElementResolve(sample.particle.type, sample.particle.ctype); sampleInfo << ", Temp: " << std::fixed << sample.particle.temp -273.15f; sampleInfo << ", Pressure: " << std::fixed << sample.AirPressure; } @@ -2067,10 +2070,14 @@ void GameView::OnDraw() sampleInfo << c->WallName(sample.WallType); sampleInfo << ", Pressure: " << std::fixed << sample.AirPressure; } - else + else if (sample.isMouseInSim) { sampleInfo << "Empty, Pressure: " << std::fixed << sample.AirPressure; } + else + { + sampleInfo << "Empty"; + } int textWidth = Graphics::textwidth((char*)sampleInfo.str().c_str()); g->fillrect(XRES-20-textWidth, 12, textWidth+8, 15, 0, 0, 0, 255*0.5); |
