Welcome to mirror list, hosted at ThFree Co, Russian Federation.

unwritten_command.h « ArcWelder - github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f85a503895e13e2bdfc5fdd99624e9ace26ecb4 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Arc Welder: Anti-Stutter Library
//
// Compresses many G0/G1 commands into G2/G3(arc) commands where possible, ensuring the tool paths stay within the specified resolution.
// This reduces file size and the number of gcodes per second.
//
// Uses the 'Gcode Processor Library' for gcode parsing, position processing, logging, and other various functionality.
//
// Copyright(C) 2020 - Brad Hochgesang
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// This program is free software : you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
// GNU Affero General Public License for more details.
//
//
// You can contact the author at the following email address: 
// FormerLurker@pm.me
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#pragma once
#include "parsed_command.h"
#include "position.h"
struct unwritten_command
{
	unwritten_command() {
		is_extruder_relative = false;
		e_relative = 0;
		offset_e = 0;
		extrusion_length = 0;
		is_g1_g2 = false;
	}
	unwritten_command(parsed_command &cmd, bool is_relative, double command_length) {
		is_extruder_relative = is_relative;
		is_g1_g2 = cmd.command == "G0" || cmd.command == "G1";
		gcode = cmd.gcode;
		comment = cmd.comment;
		extrusion_length = command_length;
	}
	/*
	unwritten_command(position* p, double command_length) {
	  
		e_relative = p->get_current_extruder().e_relative;
		offset_e = p->get_current_extruder().get_offset_e();
		is_extruder_relative = p->is_extruder_relative;
		is_g1_g2 = p->command.command == "G0" || p->command.command == "G1";
		gcode = p->command.gcode;
		comment = p->command.comment;
		extrusion_length = command_length;
	}	*/
	bool is_g1_g2;
	bool is_extruder_relative;
	double e_relative;
	double offset_e;
	double extrusion_length;
	std::string gcode;
	std::string comment;

	std::string to_string()
	{
		if (comment.size() > 0)
		{
			return gcode + ";" + comment;
		}
		return gcode;
	}
};