blob: 103e826528c41d8a10d28833ef8368fb89351516 (
plain)
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
|
#pragma once
// Provides for syntax sugar easing hardcoding.
// 1. concept names
// use declrefs(apple, is, fruit, water, has)
// to quickly define the named ref variables,
// referring always to the same named concept.
// the ref constructor provides for using
// 'true' and 'false' as refs.
// 2. links
// links may be quickly made with
// apple[is = fruit, has = water]
// which links 'apple' by 'is' to 'fruit'
// and by 'has' to 'water' in one line
// 3. hyphenation
// refs may be hyphenated (subtracted) to
// produce a new ref with the conglomerate name
// apple-has-water.name(): "apple-has-water"
// this may be expanded upon.
// 4. anonymous concept creation
// an unnamed instance of a concept may be created with the a() or an() equivalent functions:
// ref anongreenapple = an(apple)[color = green];
// it will be given a name such as apple-3
// 5. quick group checking
// the obverse of the a()/an() functions is provided
// by ref::isa() and ref::isan() which quickly check
// if there is an "is" link to the passed ref.
#include "concept.hpp"
#include <sstream>
template <typename... T>
void __helper_init_ref_names(std::string names, T &... refrefs)
{
std::stringstream ss(names);
ref* refptrs[] = {&refrefs...};
for (std::size_t i = 0; i < sizeof...(refrefs); ++ i) {
std::string name;
ss >> name;
if (name[name.size() - 1] == ',') {
name = name.substr(0, name.size() - 1);
}
refptrs[i]->ptr = ref(name).ptr;
}
}
#define declrefs(...) \
ref __VA_ARGS__; \
__helper_init_ref_names(#__VA_ARGS__, __VA_ARGS__)
ref operator,(ref a, ref b);
ref operator-(ref a, ref b);
ref a(ref what);
ref an(ref what);
|