summaryrefslogtreecommitdiffstats
path: root/src/extras/frontendoption.h
blob: 7cfc09a7d77d629bb350ea1a8b4a2dea9ab81d81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#pragma once
#include "common.h"

#ifdef CUSTOM_FRONTEND_OPTIONS
#include "Frontend.h"

// Warning: All of the code relies on that you won't use more then NUM_MENUROWS(18) options on one page. Also congrats if you can make 18 options visible at once.


// Static/select:	User allocates variable, passes it to function and it's set automatically from input among the strings given to function,
//					then you can handle ChangeFunc and ReturnPrevPageFunc if needed.
//
// Dynamic:			Function doesn't accept value pointer, user should do operations with handling ButtonPressFunc.
//					Right-side text can be set via DrawFunc, which is called on every draw. ReturnPrevPageFunc is also here if needed.

#define FEOPTION_SELECT 0
#define FEOPTION_DYNAMIC 1
#define FEOPTION_REDIRECT 2
#define FEOPTION_GOBACK 3

#define FEOPTION_ACTION_LEFT 0
#define FEOPTION_ACTION_RIGHT 1
#define FEOPTION_ACTION_SELECT 2
#define FEOPTION_ACTION_FOCUSLOSS 3

void RemoveCustomFrontendOptions();
void CustomFrontendOptionsPopulate();

// for static and dynamic options
typedef void (*ReturnPrevPageFunc)();

// for static options
typedef void (*ChangeFunc)(int8 displayedValue); // called before updating the value

// for dynamic options
typedef wchar* (*DrawFunc)(bool* disabled); // should return pointer to right text. *disabled = true will make it dark yellow
typedef void (*ButtonPressFunc)(int8 action); // see FEOPTION_ACTIONs above

struct FrontendOption
{
	int8 type;
	int8 screenOptionOrder;
	eMenuScreen screen;
	const wchar* leftText;
	ReturnPrevPageFunc returnPrevPageFunc;
	
	union {
		// Only for dynamic
		struct {
			DrawFunc drawFunc;
			ButtonPressFunc buttonPressFunc;
		};

		// Only for static/select
		struct {
			const wchar** rightTexts;
			int8 numRightTexts;
			int8 *value;
			int8 displayedValue; // if onlyApplyOnEnter enabled
			bool onlyApplyOnEnter;
			ChangeFunc changeFunc;
		};

		// Only for redirect
		struct {
			eMenuScreen to;
			int8 option;
			bool fadeIn;
		};
	};
};

extern int numCustomFrontendOptions;
extern FrontendOption* customFrontendOptions;

// To be used in ButtonPressFunc / ChangeFunc(but that would be weird):
void ChangeScreen(eMenuScreen screen, int option = 0, bool fadeIn = true);
void GoBack(bool fadeIn = true);

// If option is positive number, all calls will increase it before using it (you can think it as cursor). -1 means before the back button, -2 is end of page
void FrontendOptionSetPosition(eMenuScreen screen, int8 option = -1);

void FrontendOptionAddSelect(const wchar* leftText, const wchar** rightTexts, int8 numRightTexts, int8 *var, bool onlyApplyOnEnter, ChangeFunc changeFunc, ReturnPrevPageFunc returnPrevPageFunc);
void FrontendOptionAddDynamic(const wchar* leftText, DrawFunc rightTextDrawFunc, ButtonPressFunc buttonPressFunc, ReturnPrevPageFunc returnPrevPageFunc);
void FrontendOptionAddRedirect(const wchar* text, eMenuScreen to, int8 selectedOption = 0, bool fadeIn = true);
void FrontendOptionAddBackButton(const wchar* text, bool fadeIn = true);
#endif