Plutonium framework API 1.0.0
Easy-to-use, SDL2-based UI framework for Nintendo Switch homebrew
Loading...
Searching...
No Matches
pu_Include.hpp File Reference

Basic Plutonium include header. More...

#include <switch.h>
#include <string>
#include <memory>
#include <cmath>
#include <optional>

Go to the source code of this file.

Namespaces

namespace  pu
 

Macros

#define PU_SMART_CTOR(type)
 Defines a static function (::New(...)) as a constructor for smart ptrs, also defines a custom type (::Ref) to simplify it.
 
#define PU_CLASS_POD_GET(fn_name, var_name, type)
 Automatically defines a getter function for a POD variable.
 
#define PU_CLASS_POD_SET(fn_name, var_name, type)
 Automatically defines a setter function for a POD variable.
 
#define PU_CLASS_POD_GETSET(fn_name, var_name, type)
 Automatically defines a getter and setter function for a POD variable.
 
#define PU_RC_TRY(rc)
 Checks if the specified result code is not successful, and if so, returns it and ends the function.
 

Typedefs

using pu::i32 = s32
 

Variables

constexpr u32 pu::Module = 493
 
constexpr auto pu::ResultSdlInitFailed = ((((Module)&0x1FF)) | ((1)&0x1FFF)<<9)
 
constexpr auto pu::ResultSdlCreateWindowFailed = ((((Module)&0x1FF)) | ((2)&0x1FFF)<<9)
 
constexpr auto pu::ResultSdlCreateRendererFailed = ((((Module)&0x1FF)) | ((3)&0x1FFF)<<9)
 
constexpr auto pu::ResultImgInitFailed = ((((Module)&0x1FF)) | ((4)&0x1FFF)<<9)
 
constexpr auto pu::ResultTtfInitFailed = ((((Module)&0x1FF)) | ((5)&0x1FFF)<<9)
 

Detailed Description

Basic Plutonium include header.

Plutonium library

Author
XorTroll

Macro Definition Documentation

◆ PU_CLASS_POD_GET

#define PU_CLASS_POD_GET ( fn_name,
var_name,
type )
Value:
inline type Get##fn_name() { \
return this->var_name; \
}

Automatically defines a getter function for a POD variable.

◆ PU_CLASS_POD_GETSET

#define PU_CLASS_POD_GETSET ( fn_name,
var_name,
type )
Value:
PU_CLASS_POD_GET(fn_name, var_name, type) \
PU_CLASS_POD_SET(fn_name, var_name, type)
#define PU_CLASS_POD_GET(fn_name, var_name, type)
Automatically defines a getter function for a POD variable.
Definition pu_Include.hpp:29

Automatically defines a getter and setter function for a POD variable.

◆ PU_CLASS_POD_SET

#define PU_CLASS_POD_SET ( fn_name,
var_name,
type )
Value:
inline void Set##fn_name(const type new_val) { \
this->var_name = new_val; \
}

Automatically defines a setter function for a POD variable.

◆ PU_RC_TRY

#define PU_RC_TRY ( rc)
Value:
{ \
const auto _tmp_rc = (rc); \
if(R_FAILED(_tmp_rc)) { \
return _tmp_rc; \
} \
}

Checks if the specified result code is not successful, and if so, returns it and ends the function.

◆ PU_SMART_CTOR

#define PU_SMART_CTOR ( type)
Value:
using Ref = std::shared_ptr<type>; \
template<typename ...Args> \
inline static Ref New(Args &&...ctor_args) { \
return std::make_shared<type>(std::forward<Args>(ctor_args)...); \
}

Defines a static function (::New(...)) as a constructor for smart ptrs, also defines a custom type (::Ref) to simplify it.