2012-11-01 15:19:01 +00:00
|
|
|
// 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
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19: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 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:
|
2013-05-31 21:10:14 +00:00
|
|
|
MenuScreen();
|
2012-11-01 15:19:01 +00:00
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
2013-03-29 18:32:20 +00:00
|
|
|
void sendMessage(const char *message, const char *value);
|
2013-06-26 19:26:44 +00:00
|
|
|
void dialogFinished(const Screen *dialog, DialogResult result);
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int frames_;
|
2013-06-25 21:29:49 +00:00
|
|
|
bool showAtracShortcut_;
|
2012-11-01 15:19:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Dialog box, meant to be pushed
|
2013-03-29 17:50:08 +00:00
|
|
|
class PauseScreen : public Screen
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
2013-03-29 17:50:08 +00:00
|
|
|
virtual void sendMessage(const char *msg, const char *value);
|
2013-07-17 05:33:26 +00:00
|
|
|
|
|
|
|
struct Message
|
|
|
|
{
|
|
|
|
Message(const char *m, const char *v)
|
|
|
|
: msg(m), value(v) {}
|
|
|
|
|
|
|
|
const char *msg;
|
|
|
|
const char *value;
|
|
|
|
};
|
|
|
|
|
2013-07-17 06:34:43 +00:00
|
|
|
virtual void *dialogData()
|
2013-07-17 05:33:26 +00:00
|
|
|
{
|
|
|
|
return m_data;
|
|
|
|
}
|
|
|
|
|
|
|
|
PauseScreen() : m_data(NULL) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Message* m_data;
|
2012-11-01 15:19:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class SettingsScreen : public Screen
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2013-03-06 23:10:53 +00:00
|
|
|
class DeveloperScreen : public Screen
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
|
|
|
};
|
|
|
|
|
2013-04-16 21:11:39 +00:00
|
|
|
class AudioScreen : public Screen
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
|
|
|
};
|
|
|
|
|
2013-04-28 00:55:03 +00:00
|
|
|
class GraphicsScreenP1 : public Screen
|
2013-04-16 21:11:39 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
|
|
|
};
|
2013-03-06 23:10:53 +00:00
|
|
|
|
2013-04-28 00:55:03 +00:00
|
|
|
class GraphicsScreenP2 : public Screen
|
2013-04-27 15:58:10 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
|
|
|
};
|
|
|
|
|
2013-06-03 08:25:48 +00:00
|
|
|
class GraphicsScreenP3 : public Screen
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
|
|
|
};
|
|
|
|
|
2013-08-16 14:48:43 +00:00
|
|
|
class ControlsScreen : public Screen {
|
2013-04-16 21:11:39 +00:00
|
|
|
public:
|
2013-04-20 16:09:09 +00:00
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
|
|
|
};
|
|
|
|
|
2013-08-16 14:48:43 +00:00
|
|
|
class SystemScreen : public Screen
|
2013-05-24 00:20:29 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
|
|
|
};
|
2013-05-24 01:07:01 +00:00
|
|
|
|
2013-08-16 14:48:43 +00:00
|
|
|
class LanguageScreen : public Screen
|
2013-05-24 00:20:29 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-08-16 14:48:43 +00:00
|
|
|
LanguageScreen();
|
2013-05-24 00:20:29 +00:00
|
|
|
void update(InputState &input);
|
|
|
|
void render();
|
2013-07-06 17:08:59 +00:00
|
|
|
private:
|
2013-08-16 14:48:43 +00:00
|
|
|
std::vector<FileInfo> langs_;
|
|
|
|
std::map<std::string, std::pair<std::string, int>> langValuesMapping;
|
2013-05-24 01:07:01 +00:00
|
|
|
};
|
2013-05-24 00:20:29 +00:00
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
struct FileSelectScreenOptions {
|
2012-11-20 10:35:48 +00:00
|
|
|
const char* filter; // Enforced extension filter. Case insensitive, extensions separated by ":".
|
2012-11-01 15:19:01 +00:00
|
|
|
bool allowChooseDirectory;
|
|
|
|
int folderIcon;
|
|
|
|
std::map<std::string, int> iconMapping;
|
|
|
|
};
|
|
|
|
|
2013-08-14 21:05:02 +00:00
|
|
|
class FileSelectScreen : public Screen {
|
2012-11-01 15:19:01 +00:00
|
|
|
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() {}
|
2013-07-08 09:04:03 +00:00
|
|
|
void key(const KeyInput &key);
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void updateListing();
|
|
|
|
|
|
|
|
FileSelectScreenOptions options_;
|
|
|
|
UIList list_;
|
|
|
|
std::string currentDirectory_;
|
|
|
|
std::vector<FileInfo> listing_;
|
|
|
|
};
|