-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConverter.cs
135 lines (121 loc) · 5.38 KB
/
Converter.cs
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
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
public class Converter : MonoBehaviour
{
string str = "";
public TextAsset text;
public GameObject node;
GameObject[] nodes;
static int count; //when 0 - calculates - should be 0 only after loading a new map and clearning all of the Gameobjects and lines
const int maxNodes = 10000;
LineRenderer lineRND;
// Start is called before the first frame update
void Start()
{
lineRND = gameObject.GetComponent<LineRenderer>();
nodes = new GameObject[maxNodes];
count = 0;
str = text.text;
print(str.Length);
}
private void drawLines() {
lineRND.positionCount = count;
for (int i = 0; i < count; i++) {
lineRND.SetPosition(i, nodes[i].transform.position);
}
}
private void placeNodes()
{
int startingIndex = 0;
int tmpIndex = 0;
// search where the line starts - first find the index of "path"
for (int i = 20; i<200; i++)
{
if (str[i] == 'p' && str[i + 1] == 'a' && str[i] == 't' && str[i + 1] == 'h') ; // if the vehicle has a very long name with "path" in its name then the line will be *broken* if the vehicle's name also has "z" after the "path"
tmpIndex = i + 5; //after tmpIndex the letter z should not apear - only as cordinate z
break;
}
//count 3 apearences of the letter z, and set the starting index to the index of the 3nd appearance +4
for (int i = tmpIndex, zCounter=0; i < 400 && zCounter<3; i++) {
if (str[i] == 'z') {
zCounter++;
}
if (zCounter == 3) {
startingIndex = i + 4;
}
}
//initializing function's stuff
count = 0;
int index = startingIndex; // setting the first index for reading the the index found above
//if the index is 0, the line file is not a line file
if (index == 0) {
Debug.Log("ERROR: OREN FOUND A PROBLEM WITH YOUR LINE");
return;
}
int last = str.Length - 1;
float y = 0;
float x = 0;
float z = 0;
//old code, spawns the nodes for the line
while(index < last)
{
if (str[index] == ':') {
if (str[index - 2] == 't') {
index++;
continue;
}
if (str[index + 1] == '0' || str[index + 1] == '1' || str[index + 1] == '2' || str[index + 1] == '3' || str[index + 1] == '4' || str[index + 1] == '5' || str[index + 1] == '6' || str[index + 1] == '7' || str[index + 1] == '8' || str[index + 1] == '9' || str[index + 1] == '-') {
if (!(y == 0))
{
if (!(x == 0))
{
string tmp = str[index + 1].ToString() + str[index + 2].ToString() + str[index + 3].ToString() + str[index + 4].ToString() + str[index + 5].ToString() + str[index + 6].ToString();
if (str[index + 6] == ',')
tmp = tmp.Substring(0,tmp.Length-1);
z = (float)Convert.ToDouble(tmp);
Vector3 tmpv = new Vector3(y,x,0.1f);
if (count < maxNodes)
{
nodes[count] = Instantiate(node, tmpv, Quaternion.identity);
nodes[count].GetComponent<Value>().setValues(x, y, z); //gives the node the x,y,z cordinates, so they can be used when exporting
count++;
}
else
{
Debug.Log("Line is too long, oren didn't expect lines that so long");
}
//debug
// print("x = " + x + "y = " + y + "z = " + z);
x = 0; y = 0; z = 0;
}
else
{
string tmp = str[index + 1].ToString() + str[index + 2].ToString() + str[index + 3].ToString() + str[index + 4].ToString() + str[index + 5].ToString() + str[index + 6].ToString();
if (str[index + 6] == ',')
tmp = tmp.Substring(0, tmp.Length - 1);
x = (float)Convert.ToDouble(tmp);
}
}
else {
string tmp = str[index + 1].ToString() + str[index + 2].ToString() + str[index + 3].ToString() + str[index + 4].ToString() + str[index + 5].ToString() + str[index + 6].ToString();
if (str[index + 6] == ',')
tmp = tmp.Substring(0, tmp.Length - 1);
y = (float)Convert.ToDouble(tmp);
}
}
}
index++;
}
}
void FixedUpdate()
{
//no node has been spawned - spawn nodes
if (count == 0)
{
placeNodes();
drawLines();
}
}
}