-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSource.cpp
More file actions
138 lines (95 loc) · 2.51 KB
/
Copy pathSource.cpp
File metadata and controls
138 lines (95 loc) · 2.51 KB
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
133
134
135
136
137
138
#include "StandardFunctions.h"
#include"buffer_objects.h"
#include"Shapes.h"
#include<thread>
using namespace std;
bool running;
void func(int x) {
while (x < 10)
x++;
std::cout << x;
std::cout << "This from thread\n";
}
int main() {
sf::ContextSettings set = windowInit();
menu_start:
sf::RenderWindow win(sf::VideoMode(1280, 960), "win");
int x = menuscreen(win);
//data_object d;
if(x == 1)
{
data_object d;
//sf::RenderWindow mwin(sf::VideoMode(1280, 960), "Mwin", sf::Style::Close);
//mwin.setActive(false);
std::thread thread1(&featuremenu1, std::ref(d));;
sf::RenderWindow fwin(sf::VideoMode(1280, 960), "Features", sf::Style::Close, set);
glewExperimental = GL_TRUE;
glewInit();
physics(fwin, d);
thread1.join();
if(thread1.joinable())
{
thread1.join();
cout << "gherq\n";
}
thread1.~thread();
goto menu_start;
}
else if(x == 2)
{
data_object d;
/*sf::RenderWindow mwin(sf::VideoMode(1280, 960), "Xplore", sf::Style::Close);
mwin.setActive(false);*/
std::thread thread2(&featuremenu2, std::ref(d));
sf::RenderWindow fwin(sf::VideoMode(1280, 960), "Features", sf::Style::Close, set);
glewExperimental = GL_TRUE;
glewInit();
keplar(fwin, d);
thread2.join();
goto menu_start;
}
else if(x == 3)
{
data_object d;
//sf::RenderWindow mwin(sf::VideoMode(1280, 960), "Xplore", sf::Style::Close);
//mwin.setActive(false);
std::thread thread2(&featuremenu3, std::ref(d));
sf::RenderWindow fwin(sf::VideoMode(1280, 960), "Features", sf::Style::Close, set);
glewExperimental = GL_TRUE;
glewInit();
LA(fwin, d);
thread2.join();
goto menu_start;
}
else if (x == 4)
{
data_object d;
//for graph
/*sf::RenderWindow mwin(sf::VideoMode(1280, 960), "Xplore", sf::Style::Close);
mwin.setActive(false);*/
std::thread thread4(&featuremenu4, std::ref(d));
sf::RenderWindow fwin(sf::VideoMode(1280, 960), "Features", sf::Style::Close, set);
glewExperimental = GL_TRUE;
glewInit();
GraphPlotter(fwin, d);
thread4.join();
goto menu_start;
}
else if (x == 5)
{
data_object d;
//for graph
/*sf::RenderWindow mwin(sf::VideoMode(1280, 960), "Xplore", sf::Style::Close);
mwin.setActive(false);*/
std::thread thread4(&featuremenu5, std::ref(d));
sf::RenderWindow fwin(sf::VideoMode(1280, 960), "Features", sf::Style::Close, set);
glewExperimental = GL_TRUE;
glewInit();
obj_load(fwin, d);
thread4.join();
goto menu_start;
}
//physics(win);
//keplar(win);
//LA(win);
}