ppsspp/UI/EmuScreen.h

59 lines
1.7 KiB
C
Raw Normal View History

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
// 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 <list>
2012-11-01 15:19:01 +00:00
#include "ui/screen.h"
#include "Common/KeyMap.h"
2012-11-01 15:19:01 +00:00
class EmuScreen : public Screen
{
public:
EmuScreen(const std::string &filename);
~EmuScreen();
virtual void update(InputState &input);
virtual void render();
virtual void deviceLost();
virtual void dialogFinished(const Screen *dialog, DialogResult result);
2013-03-29 17:50:08 +00:00
virtual void sendMessage(const char *msg, const char *value);
2012-11-01 15:19:01 +00:00
virtual void touch(const TouchInput &touch);
virtual void key(const KeyInput &key);
virtual void axis(const AxisInput &axis);
2012-11-01 15:19:01 +00:00
private:
void bootGame(const std::string &filename);
2013-07-07 22:21:40 +00:00
void pspKey(int pspKeyCode, int flags);
void onVKeyDown(int virtualKeyCode);
void onVKeyUp(int virtualKeyCode);
2012-11-01 15:19:01 +00:00
// Something invalid was loaded, don't try to emulate
bool invalid_;
std::string errorMessage_;
// For the virtual touch buttons, that currently can't send key events.
InputState fakeInputState;
// To track mappable virtual keys. We can have as many as we want.
bool virtKeys[VIRTKEY_COUNT];
2013-07-04 17:59:19 +00:00
};