-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBlock.hpp
132 lines (104 loc) · 2.78 KB
/
Block.hpp
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#pragma once
#include <QLabel>
#include <QEvent>
#include <QMenu>
#include <QMouseEvent>
#include <QDebug>
#include <QMessageBox>
#include <iostream>
#include <typeinfo>
#include <memory.h>
#include <deque>
#include <map>
#include <QEventLoop>
namespace WriteBackend
{
using Invalid_type = char*;
template <typename T1, typename T2>
struct ofSameType { static constexpr bool val {false}; };
template <typename T>
struct ofSameType<T, T> { static constexpr bool val {true}; };
template <typename... T>
struct ofOneOfTypes { static constexpr bool val {false}; };
template <typename T, typename S, typename... Other>
struct ofOneOfTypes<T, S, Other...> { static constexpr bool val { ofSameType<T,S>::val || ofOneOfTypes<T, Other...>::val }; };
template <typename T>
struct getRidOfPtr { using _type = T; };
template <typename T>
struct getRidOfPtr<T*> { using _type = typename getRidOfPtr<T>::_type; };
template <typename T>
struct isPtr {static constexpr bool val {false}; };
template <typename T>
struct isPtr<T*> {static constexpr bool val {true}; };
template <typename T>
constexpr bool determineIfPtr(T) { return isPtr<T>::val; }
enum varType_e
{
BOOL,
INT,
DOUBLE,
BOOLARR,
INTARR,
DOUBLEARR,
ERRTYPE = -1,
ANYTYPE = -2,
NUMTYPE = -3,
NUMARRTYPE = -4,
ARRTYPE = -5,
NONARRTYPE = -6,
};
//extern std::map<std::string, varType_e> varTypeMap;
union _Data_t
{
public:
int _int;
double _double;
bool _bool;
int *_intArr;
double *_doubleArr;
bool *_boolArr;
void *_void;
_Data_t();
_Data_t(_Data_t const &_d) = default;
template <typename T>
_Data_t(T _d)
{
set_val(_d);
}
template <typename T>
void set_val(T _d)
{
memset(this, 0, sizeof(_Data_t));
memcpy(this, &_d, sizeof(T));
}
};
class Block
{
friend class ForPrintBlock;
friend class ForBiggerThanBlock;
friend class ForSmallerThanBlock;
friend class ForBuiltInEqualBlock;
friend class ForPlusBlock;
friend class ForMinusBlock;
friend class ForDivisionBlock;
friend class ForMultiplicationBlock;
friend class ForSubsBlock;
friend class ForAssignmentBlock;
friend class ForNotBlock;
friend class ForAndBlock;
friend class ForOrBlock;
friend class Func_Block;
friend class Visible_Block;
public:
std::string name;
_Data_t val;
Block() = delete;
Block(Block const &_d) = delete;
Block(std::string _n): name {_n}, val {} {}
template <typename T>
Block(std::string _n, T _v): name {_n}, val {_v} {}
virtual ~Block();
virtual void run() = 0;
virtual void show_val() = 0;
};
} // namespace WriteBackend