ppsspp/UI/MenuScreens.h
Henrik Rydgard 22ebe76f33 Move KeyMapping UI to its own file before rewriting.
Plus some minor tweaks and fixes.
2013-08-16 16:49:53 +02:00

164 lines
3.3 KiB
C++

// Copyright (c) 2012- PPSSPP Project.
// 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, version 2.0 or later versions.
// 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 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include <string>
#include <vector>
#include <map>
#include "ui/screen.h"
#include "ui/ui.h"
#include "file/file_util.h"
class MenuScreen : public Screen
{
public:
MenuScreen();
void update(InputState &input);
void render();
void sendMessage(const char *message, const char *value);
void dialogFinished(const Screen *dialog, DialogResult result);
private:
int frames_;
bool showAtracShortcut_;
};
// Dialog box, meant to be pushed
class PauseScreen : public Screen
{
public:
void update(InputState &input);
void render();
virtual void sendMessage(const char *msg, const char *value);
struct Message
{
Message(const char *m, const char *v)
: msg(m), value(v) {}
const char *msg;
const char *value;
};
virtual void *dialogData()
{
return m_data;
}
PauseScreen() : m_data(NULL) {}
private:
Message* m_data;
};
class SettingsScreen : public Screen
{
public:
void update(InputState &input);
void render();
};
class DeveloperScreen : public Screen
{
public:
void update(InputState &input);
void render();
};
class AudioScreen : public Screen
{
public:
void update(InputState &input);
void render();
};
class GraphicsScreenP1 : public Screen
{
public:
void update(InputState &input);
void render();
};
class GraphicsScreenP2 : public Screen
{
public:
void update(InputState &input);
void render();
};
class GraphicsScreenP3 : public Screen
{
public:
void update(InputState &input);
void render();
};
class ControlsScreen : public Screen {
public:
void update(InputState &input);
void render();
};
class SystemScreen : public Screen
{
public:
void update(InputState &input);
void render();
};
class LanguageScreen : public Screen
{
public:
LanguageScreen();
void update(InputState &input);
void render();
private:
std::vector<FileInfo> langs_;
std::map<std::string, std::pair<std::string, int>> langValuesMapping;
};
struct FileSelectScreenOptions {
const char* filter; // Enforced extension filter. Case insensitive, extensions separated by ":".
bool allowChooseDirectory;
int folderIcon;
std::map<std::string, int> iconMapping;
};
class FileSelectScreen : public Screen {
public:
FileSelectScreen(const FileSelectScreenOptions &options);
void update(InputState &input);
void render();
// Override these to for example write the current directory to a config file.
virtual void onSelectFile() {}
virtual void onCancel() {}
void key(const KeyInput &key);
private:
void updateListing();
FileSelectScreenOptions options_;
UIList list_;
std::string currentDirectory_;
std::vector<FileInfo> listing_;
};