Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
pu_Include.hpp
Go to the documentation of this file.
1/**
2 * Plutonium library
3 * @file pu_Include.hpp
4 * @brief Basic Plutonium include header
5 * @author XorTroll
6 * @copyright XorTroll
7*/
8
9#pragma once
10#include <switch.h>
11#include <string>
12#include <memory>
13#include <cmath>
14#include <optional>
15
16/**
17 * @brief Defines a static function (::New(...)) as a constructor for smart ptrs, also defines a custom type (::Ref) to simplify it
18*/
19#define PU_SMART_CTOR(type) using
20 Ref = std::shared_ptr<type>; template
21 <typename ...Args> inline
22 static Ref New(Args &&...ctor_args) {
23 return std::make_shared<type>(std::forward<Args>(ctor_args)...); \
24}
25
26/**
27 * @brief Automatically defines a getter function for a POD variable
28*/
29#define PU_CLASS_POD_GET(fn_name, var_name, type) inline
30 type Get##fn_name() {
31 return this->var_name; \
32}
33
34/**
35 * @brief Automatically defines a setter function for a POD variable
36*/
37#define PU_CLASS_POD_SET(fn_name, var_name, type) inline
38 void Set##fn_name(const type new_val) {
39 this->var_name = new_val; \
40}
41
42/**
43 * @brief Automatically defines a getter and setter function for a POD variable
44*/
45#define PU_CLASS_POD_GETSET(fn_name, var_name, type) PU_CLASS_POD_GET
46 (fn_name, var_name, type) PU_CLASS_POD_SET
47 (fn_name, var_name, type)
48
49/**
50 * @brief Checks if the specified result code is not successful, and if so, returns it and ends the function
51*/
52#define PU_RC_TRY(rc) {
53 const auto _tmp_rc = (rc);
54 if(R_FAILED(_tmp_rc)) {
55 return _tmp_rc;
56 } \
57}
58
59namespace pu {
60
61 using i32 = s32;
62
63 constexpr u32 Module = 493;
64
65 // I guess these are self-explanatory
66
67 constexpr auto ResultSdlInitFailed = MAKERESULT(Module, 1);
68 constexpr auto ResultSdlCreateWindowFailed = MAKERESULT(Module, 2);
69 constexpr auto ResultSdlCreateRendererFailed = MAKERESULT(Module, 3);
70 constexpr auto ResultImgInitFailed = MAKERESULT(Module, 4);
71 constexpr auto ResultTtfInitFailed = MAKERESULT(Module, 5);
72
73}
constexpr auto ResultImgInitFailed
Definition pu_Include.hpp:70
constexpr auto ResultSdlCreateRendererFailed
Definition pu_Include.hpp:69
constexpr auto ResultSdlCreateWindowFailed
Definition pu_Include.hpp:68
constexpr u32 Module
Definition pu_Include.hpp:63
constexpr auto ResultTtfInitFailed
Definition pu_Include.hpp:71
constexpr auto ResultSdlInitFailed
Definition pu_Include.hpp:67