File size: 11,505 Bytes
6277b99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321

# import os

# def checkEncoding(filepath):
#     filepath = filepath
#     with open(filepath, "rb") as encode_check:
#         encoding = encode_check.readline(3)
#     if encoding == b"\xfe\xff\x00":
#         return "utf_16_be"
#     elif encoding == b"\xff\xfe0":
#         return "utf_16_le"
#     else:
#         return "utf_8"

# def readTextFile(filepath):
#     filepath = filepath
#     lines = None
#     if os.path.exists(filepath):
#         file_encoding = checkEncoding(filepath)
#         try:
#             with open(filepath, "rt", encoding=file_encoding) as f_in:
#                 lines = f_in.readlines()
#         except:
#             with open(filepath, "rt", encoding="latin_1") as f_in:
#                 lines = f_in.readlines()

#     return lines

# def getModulePart(start_line, end_line, lines, main_section, offsetX, offsetY, offsetZ):
#     for j in range(start_line, end_line):
#         line = lines[j]
#         if line.startswith("1 "):
#             parts = line.strip().split()
#             if len(parts) >= 5:
#                 try:
#                     x = float(parts[2]) + offsetX
#                     y = float(parts[3]) + offsetY
#                     z = float(parts[4]) + offsetZ
#                     parts[2] = str(x)
#                     parts[3] = str(y)
#                     parts[4] = str(z)
#                     line = " ".join(parts) + "\n"
#                 except ValueError as e:
#                     print(e)
#                     pass
#         main_section.append(line)


# def process_ldr(filepath, output_file, offsetX, offsetY, offsetZ):
#     if os.path.isfile(filepath):
#         lines = readTextFile(filepath)
#         if lines is None:
#             print("Could not read file {0}".format(filepath))
#             lines = []
#     else:
#         lines = []

#     main_section =  []
#     startLine = 0
#     endLine = 0
#     lineCount = 0
#     foundEnd = False
    
#     for line in lines:
#         parameters = line.strip().split()
#         if len(parameters) > 2:
#             if parameters[0] == "0" and parameters[1] == "FILE":
#                 if foundEnd == False:
#                     endLine = lineCount
#                     if endLine > startLine:
#                         getModulePart(startLine, endLine, lines, main_section, offsetX, offsetY, offsetZ)
#                         foundEnd = True
#                         break

#                 startLine = lineCount
#                 foundEnd = False

#             #import ipdb; ipdb.set_trace()
#             if parameters[0] == "0" and parameters[1] == "NOFILE":
#                 endLine = lineCount
#                 foundEnd = True
#                 getModulePart(startLine, endLine, lines, main_section, offsetX, offsetY, offsetZ)
#                 break
#         lineCount += 1

#     if lineCount < len(lines):
#         remaining = lines[lineCount:]
#     else:
#         remaining = []

#     if foundEnd == False:
#         endLine = lineCount
#         if endLine > startLine:
#             getModulePart(startLine, endLine, lines, main_section, offsetX, offsetY, offsetZ)

#     import ipdb; ipdb.set_trace()
#     new_section = main_section + remaining
#     with open(output_file, "w", encoding="utf-8") as f:
#         f.writelines(new_section)


# process_ldr("/public/home/wangshuo/gap/assembly/data/car_1k/ldr/car_5/car_5.ldr", "car_5_normalize_woremaining.ldr", 6000, 150, 2000)

import os

def checkEncoding(filepath):
    filepath = filepath
    with open(filepath, "rb") as encode_check:
        encoding = encode_check.readline(3)
    if encoding == b"\xfe\xff\x00":
        return "utf_16_be"
    elif encoding == b"\xff\xfe0":
        return "utf_16_le"
    else:
        return "utf_8"

def readTextFile(filepath):
    filepath = filepath
    lines = None
    if os.path.exists(filepath):
        file_encoding = checkEncoding(filepath)
        try:
            with open(filepath, "rt", encoding=file_encoding) as f_in:
                lines = f_in.readlines()
        except:
            with open(filepath, "rt", encoding="latin_1") as f_in:
                lines = f_in.readlines()

    return lines

def getModulePart(start_line, end_line, lines, main_section, offsetX, offsetY, offsetZ):
    max_x, max_y, max_z = float('-inf'), float('-inf'), float('-inf')
    
    for j in range(start_line, end_line):
        line = lines[j]
        if line.startswith("1 "):
            parts = line.strip().split()
            if len(parts) >= 5:
                try:
                    x = float(parts[2]) + offsetX
                    y = float(parts[3]) + offsetY
                    z = float(parts[4]) + offsetZ
                    parts[2] = str(x)
                    parts[3] = str(y)
                    parts[4] = str(z)
                    line = " ".join(parts) + "\n"
                    
                    # Update max coordinates
                    max_x = max(max_x, x)
                    max_y = max(max_y, y)
                    max_z = max(max_z, z)
                    
                except ValueError as e:
                    print(e)
                    pass
        main_section.append(line)
    
    return max_x, max_y, max_z

def getModulePartMin(start_line, end_line, lines, main_section):
    min_x, min_y, min_z = float('inf'), float('inf'), float('inf')
    
    for j in range(start_line, end_line):
        line = lines[j]
        if line.startswith("1 "):
            parts = line.strip().split()
            if len(parts) >= 5:
                try:
                    x = float(parts[2]) 
                    y = float(parts[3]) 
                    z = float(parts[4]) 
                    parts[2] = str(x)
                    parts[3] = str(y)
                    parts[4] = str(z)
                    line = " ".join(parts) + "\n"
                    
                    # Update min coordinates
                    min_x = min(min_x, x)
                    min_y = min(min_y, y)
                    min_z = min(min_z, z)
                    
                except ValueError as e:
                    print(e)
                    pass
        main_section.append(line)
    
    return min_x, min_y, min_z

def process_ldr(filepath, output_file, offsetX, offsetY, offsetZ, keep_remaining=False):
    if os.path.isfile(filepath):
        lines = readTextFile(filepath)
        if lines is None:
            print("Could not read file {0}".format(filepath))
            lines = []
    else:
        lines = []

    main_section = []
    startLine = 0
    endLine = 0
    lineCount = 0
    foundEnd = False
    max_x, max_y, max_z = float('-inf'), float('-inf'), float('-inf')  # Initialize max values
    
    for line in lines:
        parameters = line.strip().split()
        if len(parameters) > 2:
            if parameters[0] == "0" and parameters[1] == "FILE":
                if foundEnd == False:
                    endLine = lineCount
                    if endLine > startLine:
                        local_max_x, local_max_y, local_max_z = getModulePart(startLine, endLine, lines, main_section, offsetX, offsetY, offsetZ)
                        max_x = max(max_x, local_max_x)
                        max_y = max(max_y, local_max_y)
                        max_z = max(max_z, local_max_z)
                        foundEnd = True
                        break

                startLine = lineCount
                foundEnd = False

            if parameters[0] == "0" and parameters[1] == "NOFILE":
                endLine = lineCount
                foundEnd = True
                local_max_x, local_max_y, local_max_z = getModulePart(startLine, endLine, lines, main_section, offsetX, offsetY, offsetZ)
                max_x = max(max_x, local_max_x)
                max_y = max(max_y, local_max_y)
                max_z = max(max_z, local_max_z)
                break
        lineCount += 1

    if lineCount < len(lines):
        remaining = lines[lineCount:]
    else:
        remaining = []

    if foundEnd == False:
        endLine = lineCount
        if endLine > startLine:
            local_max_x, local_max_y, local_max_z = getModulePart(startLine, endLine, lines, main_section, offsetX, offsetY, offsetZ)
            max_x = max(max_x, local_max_x)
            max_y = max(max_y, local_max_y)
            max_z = max(max_z, local_max_z)

    # import ipdb; ipdb.set_trace()
    if keep_remaining == False:
        remaining = []
        #import ipdb; ipdb.set_trace()
    new_section = main_section + remaining
    with open(output_file, "w", encoding="utf-8") as f:
        f.writelines(new_section)

    return max_x, max_y, max_z  # Return the maximum coordinates

def getmin_ldr(filepath):
    if os.path.isfile(filepath):
        lines = readTextFile(filepath)
        if lines is None:
            print("Could not read file {0}".format(filepath))
            lines = []
    else:
        lines = []

    main_section = []
    startLine = 0
    endLine = 0
    lineCount = 0
    foundEnd = False
    min_x, min_y, min_z = float('inf'), float('inf'), float('inf')  # Initialize max values
    
    for line in lines:
        parameters = line.strip().split()
        if len(parameters) > 2:
            if parameters[0] == "0" and parameters[1] == "FILE":
                if foundEnd == False:
                    endLine = lineCount
                    if endLine > startLine:
                        local_min_x, local_min_y, local_min_z = getModulePartMin(startLine, endLine, lines, main_section)
                        min_x = min(min_x, local_min_x)
                        min_y = min(min_y, local_min_y)
                        min_z = min(min_z, local_min_z)
                        foundEnd = True
                        break

                startLine = lineCount
                foundEnd = False

            if parameters[0] == "0" and parameters[1] == "NOFILE":
                endLine = lineCount
                foundEnd = True
                local_min_x, local_min_y, local_min_z = getModulePartMin(startLine, endLine, lines, main_section)
                min_x = min(min_x, local_min_x)
                min_y = min(min_y, local_min_y)
                min_z = min(min_z, local_min_z)
                break
        lineCount += 1

    if lineCount < len(lines):
        remaining = lines[lineCount:]
    else:
        remaining = []

    if foundEnd == False:
        endLine = lineCount
        if endLine > startLine:
            local_min_x, local_min_y, local_min_z = getModulePartMin(startLine, endLine, lines, main_section)
            min_x = min(min_x, local_min_x)
            min_y = min(min_y, local_min_y)
            min_z = min(min_z, local_min_z)

    new_section = main_section + remaining


    return min_x, min_y, min_z  # Return the maximum coordinates

# # # Example call
# max_x, max_y, max_z = process_ldr("/public/home/wangshuo/gap/assembly/data/car_1k/subset_self/ldr_rotated_l30/car_1293_rot.ldr", 
#                                     "car_1293_normalize_woremaining.ldr", 6000, 150, 2000)

# print(f"Maximum coordinates after translation: X = {max_x}, Y = {max_y}, Z = {max_z}")