2014-12-22 09:48:17 +00:00
|
|
|
// Copyright (c) 2014- 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
|
|
|
|
|
2016-10-12 09:32:24 +00:00
|
|
|
#include <functional>
|
|
|
|
|
2014-12-22 09:48:17 +00:00
|
|
|
#include "ui/ui_screen.h"
|
|
|
|
#include "ui/viewgroup.h"
|
|
|
|
#include "UI/MiscScreens.h"
|
2016-12-27 21:26:49 +00:00
|
|
|
#include "UI/TextureUtil.h"
|
2014-12-22 09:48:17 +00:00
|
|
|
|
|
|
|
class GamePauseScreen : public UIDialogScreenWithGameBackground {
|
|
|
|
public:
|
2015-09-23 17:29:39 +00:00
|
|
|
GamePauseScreen(const std::string &filename) : UIDialogScreenWithGameBackground(filename), finishNextFrame_(false), gamePath_(filename) {}
|
2014-12-22 09:48:17 +00:00
|
|
|
virtual ~GamePauseScreen();
|
|
|
|
|
2014-12-31 19:42:28 +00:00
|
|
|
virtual void dialogFinished(const Screen *dialog, DialogResult dr) override;
|
2014-12-22 09:48:17 +00:00
|
|
|
|
|
|
|
protected:
|
2014-12-31 19:42:28 +00:00
|
|
|
virtual void CreateViews() override;
|
2017-03-15 05:01:18 +00:00
|
|
|
virtual void update() override;
|
2014-12-31 19:42:28 +00:00
|
|
|
virtual void sendMessage(const char *message, const char *value) override;
|
2014-12-22 09:48:17 +00:00
|
|
|
void CallbackDeleteConfig(bool yes);
|
|
|
|
|
|
|
|
private:
|
|
|
|
UI::EventReturn OnMainSettings(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnGameSettings(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnExitToMenu(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnReportFeedback(UI::EventParams &e);
|
|
|
|
|
|
|
|
UI::EventReturn OnRewind(UI::EventParams &e);
|
|
|
|
|
2014-12-31 19:42:28 +00:00
|
|
|
UI::EventReturn OnScreenshotClicked(UI::EventParams &e);
|
2014-12-22 09:48:17 +00:00
|
|
|
UI::EventReturn OnCwCheat(UI::EventParams &e);
|
|
|
|
|
|
|
|
UI::EventReturn OnCreateConfig(UI::EventParams &e);
|
|
|
|
UI::EventReturn OnDeleteConfig(UI::EventParams &e);
|
|
|
|
|
|
|
|
UI::EventReturn OnSwitchUMD(UI::EventParams &e);
|
2014-12-31 14:33:43 +00:00
|
|
|
UI::EventReturn OnState(UI::EventParams &e);
|
2014-12-22 09:48:17 +00:00
|
|
|
|
|
|
|
UI::Choice *saveStateButton_;
|
|
|
|
UI::Choice *loadStateButton_;
|
2014-12-31 19:42:28 +00:00
|
|
|
|
|
|
|
// hack
|
|
|
|
bool finishNextFrame_;
|
2015-09-23 17:29:39 +00:00
|
|
|
std::string gamePath_;
|
2014-12-22 09:48:17 +00:00
|
|
|
};
|
2015-02-01 17:04:06 +00:00
|
|
|
|
|
|
|
class PrioritizedWorkQueue;
|
|
|
|
|
|
|
|
// TextureView takes a texture that is assumed to be alive during the lifetime
|
|
|
|
// of the view. TODO: Actually make async using the task.
|
|
|
|
class AsyncImageFileView : public UI::Clickable {
|
|
|
|
public:
|
2017-02-17 18:51:05 +00:00
|
|
|
AsyncImageFileView(const std::string &filename, UI::ImageSizeMode sizeMode, PrioritizedWorkQueue *wq, UI::LayoutParams *layoutParams = 0);
|
|
|
|
~AsyncImageFileView();
|
2015-02-01 17:04:06 +00:00
|
|
|
|
|
|
|
void GetContentDimensions(const UIContext &dc, float &w, float &h) const override;
|
|
|
|
void Draw(UIContext &dc) override;
|
|
|
|
|
|
|
|
void SetFilename(std::string filename);
|
|
|
|
void SetColor(uint32_t color) { color_ = color; }
|
|
|
|
void SetOverlayText(std::string text) { text_ = text; }
|
|
|
|
void SetFixedSize(float fixW, float fixH) { fixedSizeW_ = fixW; fixedSizeH_ = fixH; }
|
2015-02-02 09:05:23 +00:00
|
|
|
void SetCanBeFocused(bool can) { canFocus_ = can; }
|
|
|
|
|
|
|
|
bool CanBeFocused() const override { return canFocus_; }
|
2015-02-01 17:04:06 +00:00
|
|
|
|
|
|
|
const std::string &GetFilename() const { return filename_; }
|
|
|
|
|
|
|
|
private:
|
2015-02-02 09:05:23 +00:00
|
|
|
bool canFocus_;
|
2015-02-01 17:04:06 +00:00
|
|
|
std::string filename_;
|
|
|
|
std::string text_;
|
|
|
|
uint32_t color_;
|
|
|
|
UI::ImageSizeMode sizeMode_;
|
|
|
|
|
2017-05-18 10:41:42 +00:00
|
|
|
ManagedTexture *texture_ = nullptr;
|
2015-02-01 17:04:06 +00:00
|
|
|
bool textureFailed_;
|
|
|
|
float fixedSizeW_;
|
|
|
|
float fixedSizeH_;
|
|
|
|
};
|