-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
220 lines (199 loc) · 6.84 KB
/
app.js
File metadata and controls
220 lines (199 loc) · 6.84 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
var createError = require('http-errors');
var express = require('express');
var path = require('path');
var logger = require('morgan');
var cors = require('cors');
var dotenv = require('dotenv');
// var sequelize = require('sequelize');
let deliveryService = require('./services/deliveryService');
// const rosnodejs = require('rosnodejs');
// rosnodejs.initNode('/hongdo_ros_web_node');
// const nh = rosnodejs.nh;
// function opnecv_capture() {
// const client = nh.serviceClient('/capture', 'std_srvs/Trigger');
// client.call();
// }
// function self_door_open() {
// //문 열어주세요. 성공적으로 열면 true 반환, 3초뒤에 item push해주세요
// const client = nh.serviceClient('/opendoor2', 'std_srvs/Trigger');
// client.call((resp) => {
// console.log('Self door open Service response ' + JSON.stringify(resp));
// });
// }
// function itempush(goal) {
// //open에서 finish 받으면 실행 끝나면 true 반환, 5초 뒤에 self_door_close해주세요
// const client = nh.serviceClient('/exection', 'std_srvs/Trigger');
// client.call((resp) => {
// console.log('itempush Service response ' + JSON.stringify(resp));
// });
// }
// function self_door_close() {
// //문 닫아주세요. 성공적으로 열면 true 반환
// const client = nh.serviceClient('/closedoor2', 'std_srvs/Trigger');
// client.call((resp) => {
// console.log('self door close Service response ' + JSON.stringify(resp));
// });
// }
// function human_door_open() {
// //문 열어주세요. 성공적으로 열면 true 반환,
// const client = nh.serviceClient('/opendoor1', 'std_srvs/Trigger');
// client.call((resp) => {
// console.log('Human door open Service response ' + JSON.stringify(resp));
// });
// }
// function human_door_close() {
// //문 닫아주세요. 성공적으로 열면 true 반환,
// const client = nh.serviceClient('/closedoor1', 'std_srvs/Trigger');
// client.call((resp) => {
// console.log(
// 'human door close Service response ' + JSON.stringify(resp)
// );
// });
// }
// function destination(goal) {
// //목적지 start 처음, middle 중간, final 끝
// const client = nh.serviceClient('/closedoor', 'std_srvs/Trigger');
// client.call({ dest: goal }, (resp) => {
// console.log('Destination Service response ' + JSON.stringify(resp));
// });
// }
async function middleStart() {
human_door_open();
setTimeout(function () {
human_door_close();
}, 5000); // 5초 후 닫힘
await deliveryService.startCustomer(currentId);
destination(currentDelivery[0].destination);
}
let timeOut = true
// 도착 신호 받으면 실행되는 함수
async function customerStart() {
await deliveryService.arrive(currentId);
if (currentDelivery[0].isInPerson == '직접 수령하기') {
setTimeout(function () {
if (timeout) {
if (self_door_open()) {
console.log('self door open');
setTimeout(function () {
if (itempush()) {
console.log('item push');
}
}, 1000 * 20);
setTimeout(function () {
if (self_door_close()) {
console.log('self door close');
}
}, 1000 * 20);
}
//await deliveryService.finish(currentId);
destination(final);
}
})
} else {
if (self_door_open()) {
console.log('self door open');
setTimeout(function () {
if (itempush()) {
console.log('item push');
}
}, 1000 * 20);
setTimeout(function () {
if (self_door_close()) {
console.log('self door close');
}
}, 1000 * 20);
}
await deliveryService.finish(currentId);
destination(final);
}
}
function test() {
console.log('This is test!');
}
function open_door() {
//문 열어주세요. 성공적으로 열면 true 반환
const client = nh.serviceClient('/opendoor', 'std_srvs/Trigger');
client.call((resp) => {
console.log('Opendoor Service response ' + JSON.stringify(resp));
});
}
function close_door() {
//문 닫아주세요. 성공적으로 열면 true 반환
const client = nh.serviceClient('/closedoor', 'std_srvs/Trigger');
client.call((resp) => {
console.log('closedoor Service response ' + JSON.stringify(resp));
});
}
function destination(goal) {
//목적지 start 처음, middle 중간, final 끝
const client = nh.serviceClient('/closedoor', 'std_srvs/Trigger');
client.call({ dest: goal }, (resp) => {
console.log('closedoor Service response ' + JSON.stringify(resp));
});
}
function itempush(goal) {
//open에서 finish 받으면 실행 끝나면 true 반환
const client = nh.serviceClient('/exection', 'std_srvs/Trigger');
client.call((resp) => {
console.log('closedoor Service response ' + JSON.stringify(resp));
});
}
function test() {
console.log('test');
}
var app = express();
let currentId = 0;
let currentDelivery = null;
app.get('/index.html', (req, res) => {
test();
res.send('hello');
});
app.get('/start', async function (req, res) {
try {
currentDelivery = await deliveryService.findDelivery();
currentId = currentDelivery[0].id;
console.log('start');
destination('start');
deliveryService.startDelivery(currentId);
console.log(currentDelivery);
console.log('김채원바보');
res.send('start success');
} catch (err) {
console.log(err);
res.send('start error');
}
});
let open = false;
app.get('/open', async function (req, res) {
console.log('뭔소리고');
try {
console.log('open', open);
console.log(currentDelivery);
if (!open) {
open = true;
res.send('open start');
timeOut = false;
human_door_open();
console.log('human_door_open');
setTimeout(function () {
if (human_door_close()) {
console.log('human_door_close');
}
}, 1000 * 20);
setTimeout(async function () {
await deliveryService.finish(currentId);
destination('final');
open = false;
}, 1000 * 40);
} else {
res.send('already open');
}
} catch (err) {
console.log(err);
}
});
setInterval(async function () {
// currentDelivery = await deliveryService.findDelivery();
// currentId = currentDelivery[0].id;
}, 1000);
module.exports = app;