aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/applets/applet.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/applets/applet.h')
-rw-r--r--src/core/hle/applets/applet.h21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/core/hle/applets/applet.h b/src/core/hle/applets/applet.h
index f50f7d60..fe537e70 100644
--- a/src/core/hle/applets/applet.h
+++ b/src/core/hle/applets/applet.h
@@ -12,10 +12,10 @@
namespace HLE {
namespace Applets {
-class Applet : public std::enable_shared_from_this<Applet> {
+class Applet {
public:
- virtual ~Applet() {};
- Applet(Service::APT::AppletId id) : id(id) {};
+ virtual ~Applet() { }
+ Applet(Service::APT::AppletId id) : id(id) { }
/**
* Creates an instance of the Applet subclass identified by the parameter.
@@ -37,25 +37,33 @@ public:
* @param parameter Parameter data to handle.
* @returns ResultCode Whether the operation was successful or not.
*/
- virtual ResultCode ReceiveParameter(Service::APT::MessageParameter const& parameter) = 0;
+ virtual ResultCode ReceiveParameter(const Service::APT::MessageParameter& parameter) = 0;
/**
* Handles the Applet start event, triggered from the application.
* @param parameter Parameter data to handle.
* @returns ResultCode Whether the operation was successful or not.
*/
- virtual ResultCode Start(Service::APT::AppletStartupParameter const& parameter) = 0;
+ ResultCode Start(const Service::APT::AppletStartupParameter& parameter);
/**
* Whether the applet is currently executing instead of the host application or not.
*/
- virtual bool IsRunning() = 0;
+ virtual bool IsRunning() const = 0;
/**
* Handles an update tick for the Applet, lets it update the screen, send commands, etc.
*/
virtual void Update() = 0;
+protected:
+ /**
+ * Handles the Applet start event, triggered from the application.
+ * @param parameter Parameter data to handle.
+ * @returns ResultCode Whether the operation was successful or not.
+ */
+ virtual ResultCode StartImpl(const Service::APT::AppletStartupParameter& parameter) = 0;
+
Service::APT::AppletId id; ///< Id of this Applet
};
@@ -65,6 +73,5 @@ void Init();
/// Shuts down the HLE applets
void Shutdown();
-extern std::shared_ptr<Applet> g_current_applet; ///< Applet that is currently executing
}
} // namespace