Added Enigma game
This commit is contained in:
68
project/jni/application/enigma/src/gui/LevelInspector.hh
Normal file
68
project/jni/application/enigma/src/gui/LevelInspector.hh
Normal file
@@ -0,0 +1,68 @@
|
||||
/*
|
||||
* Copyright (C) 2006, 2007 Ronald Lamprecht
|
||||
*
|
||||
* 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 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.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef GUI_LEVELINSPECTOR_HH_INCLUDED
|
||||
#define GUI_LEVELINSPECTOR_HH_INCLUDED
|
||||
|
||||
#include "ecl.hh"
|
||||
#include "gui/Menu.hh"
|
||||
#include "gui/TextField.hh"
|
||||
#include "lev/Proxy.hh"
|
||||
|
||||
namespace enigma { namespace gui {
|
||||
class LevelInspector : public gui::Menu {
|
||||
public:
|
||||
LevelInspector (lev::Proxy *aLevel, bool showDeveloperInfo = false);
|
||||
~LevelInspector ();
|
||||
bool isEndDeveloperMode();
|
||||
private:
|
||||
// ActionListener interface.
|
||||
bool on_event (const SDL_Event &e);
|
||||
void on_action(gui::Widget *w);
|
||||
|
||||
// Menu interface.
|
||||
void draw_background(ecl::GC &gc);
|
||||
void tick(double dtime);
|
||||
|
||||
//
|
||||
std::string ratingToString(int value);
|
||||
std::string scoreToString(int easy, int difficult, lev::Proxy *aLevel,
|
||||
bool constLengthForCenteredClipping);
|
||||
std::string scoreToString(int score, lev::Proxy *aLevel);
|
||||
void dispatchBottomLines(int &bestScoreHolderLines,
|
||||
int &creditsLines, int &dedicationLines, int &levelPathLines,
|
||||
int &annotationLines, int &compatibilityLines, int &idLines, int numLines, int width);
|
||||
// Variables.
|
||||
gui::Widget *back;
|
||||
gui::Widget *screenshot;
|
||||
gui::TextField *annotation;
|
||||
ecl::Surface *previewImage;
|
||||
lev::Proxy *levelProxy;
|
||||
std::string levelPathString;
|
||||
int vspacing;
|
||||
int vspacing2;
|
||||
int vmargin;
|
||||
int hmargin;
|
||||
bool withEasy;
|
||||
bool ratingInherited;
|
||||
bool isDeveloperMode;
|
||||
};
|
||||
|
||||
}} // namespace enigma::gui
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user