forked from Ultimaker/CuraEngine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommandSocket.h
48 lines (34 loc) · 1.07 KB
/
commandSocket.h
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
#ifndef COMMAND_SOCKET_H
#define COMMAND_SOCKET_H
#include "utils/socket.h"
#include "utils/polygon.h"
#include "settings.h"
#include "Progress.h"
#include <memory>
#include "Cura.pb.h"
namespace cura {
class fffProcessor;
class CommandSocket
{
public:
CommandSocket(fffProcessor* processor);
void connect(const std::string& ip, int port);
void handleObjectList(Cura::ObjectList* list);
void handleSettingList(Cura::SettingList* list);
void sendLayerInfo(int layer_nr, int32_t z, int32_t height);
void sendPolygons(cura::PolygonType type, int layer_nr, cura::Polygons& polygons);
void sendProgress(float amount);
void sendProgressStage(Progress::Stage stage);
void sendPrintTime();
void sendPrintMaterialForObject(int index, int extruder_nr, float material_amount);
void beginSendSlicedObject();
void endSendSlicedObject();
void beginGCode();
void sendGCodeLayer();
void sendGCodePrefix(std::string prefix);
private:
class Private;
const std::unique_ptr<Private> d;
};
}//namespace cura
#endif//COMMAND_SOCKET_H