Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Shared Track Objects
02-22-2011, 06:04 PM,
#14
 
Here is a hacked conversion script. Warning only tested with rouen.

Code:
import os

def locate(pattern, root=os.getcwd()):
    for path, dirs, files in os.walk(root):
        for filename in [os.path.abspath(os.path.join(path, filename)) for filename in files if filename.endswith(pattern)]:
            yield filename

root = 'D:/vdrift/data/tracks/rouen/objects'
pattern = 'list.txt'

objects = []
for filename in locate(pattern, root):
    file = open(filename, 'r')
    object = []
    line = file.readline()
    while line != '':
        line = line.strip()
        if len(line) > 0 and not line.startswith('#'):
            if line.endswith('.joe'):
                objects.append(object[:])
                object = []
            object.append(line)
        line = file.readline()
    objects.append(object[:])
    file.close()

filename = filename.rsplit('/', 1)[0].rsplit('\\', 1)[0]
file = open(filename+'objects.txt', 'w')
count = 0
for ob in objects:
    if len(ob) == 17:
        file.write('[body.' + str(count) + ']\n')
        file.write('model = ' + ob[0] + '\n')
        file.write('texture = ' + ob[1] + '\n')
        if ob[15] != '0': file.write('clampuv = ' + ob[15] + '\n')
        if ob[5] != '0': file.write('transparent = ' + ob[5] + '\n')
        if ob[2] != '1': file.write('mipmap = false\n')
        if ob[14] != '0': file.write('isashadow = true\n')
        if ob[3] != '0': file.write('nolighting = true\n')
        if ob[4] != '0': file.write('skybox = true\n')
        if ob[8] != '1' and ob[9] != '1': file.write('collidable = false\n')
        if ob[16] != '0': file.write('surface = ' + ob[16] + '\n')
        file.write('\n')
        count = count + 1
count = 0
for ob in objects:
    if len(ob) == 17:
        file.write('[node.' + str(count) + ']\n')
        file.write('body = ' + str(count) + '\n')
        file.write('\n')
        count = count + 1
file.close()
Reply


Messages In This Thread
Shared Track Objects - by zimluura - 02-11-2011, 11:30 AM
[No subject] - by charlieg - 02-12-2011, 09:01 PM
[No subject] - by NaN - 02-14-2011, 02:02 PM
[No subject] - by zimluura - 02-14-2011, 04:46 PM
[No subject] - by NaN - 02-15-2011, 05:51 AM
[No subject] - by zimluura - 02-15-2011, 02:42 PM
[No subject] - by NaN - 02-15-2011, 03:43 PM
[No subject] - by zimluura - 02-15-2011, 05:44 PM
[No subject] - by joevenzon_phpbb2_import3 - 02-17-2011, 11:37 AM
[No subject] - by zimluura - 02-17-2011, 07:01 PM
[No subject] - by joevenzon_phpbb2_import3 - 02-17-2011, 11:05 PM
[No subject] - by NaN - 02-22-2011, 05:54 PM
[No subject] - by NaN - 02-22-2011, 06:04 PM
[No subject] - by alex25 - 02-22-2011, 06:42 PM
[No subject] - by alex25 - 02-22-2011, 06:48 PM
[No subject] - by NaN - 02-22-2011, 07:17 PM
[No subject] - by alex25 - 02-22-2011, 07:49 PM
[No subject] - by NaN - 02-22-2011, 08:17 PM
[No subject] - by joevenzon_phpbb2_import3 - 02-22-2011, 11:42 PM
[No subject] - by alex25 - 02-23-2011, 09:32 AM
[No subject] - by NaN - 02-23-2011, 11:48 AM
[No subject] - by joevenzon_phpbb2_import3 - 02-24-2011, 12:14 AM
[No subject] - by NaN - 02-24-2011, 10:50 AM
[No subject] - by joevenzon_phpbb2_import3 - 02-24-2011, 10:54 PM
[No subject] - by NaN - 02-26-2011, 08:32 AM
[No subject] - by joevenzon_phpbb2_import3 - 02-26-2011, 01:40 PM
[No subject] - by NaN - 02-26-2011, 02:10 PM
[No subject] - by joevenzon_phpbb2_import3 - 02-26-2011, 05:19 PM
[No subject] - by NaN - 02-26-2011, 06:42 PM
[No subject] - by joevenzon_phpbb2_import3 - 02-27-2011, 03:52 PM
[No subject] - by NaN - 03-01-2011, 03:57 PM
[No subject] - by nomoo - 03-01-2011, 05:04 PM
[No subject] - by NaN - 03-01-2011, 05:24 PM
[No subject] - by nomoo - 03-01-2011, 05:32 PM
[No subject] - by NaN - 03-01-2011, 06:05 PM
[No subject] - by nomoo - 03-02-2011, 02:35 AM
[No subject] - by zimluura - 03-02-2011, 04:36 AM
[No subject] - by NaN - 03-02-2011, 07:50 AM
[No subject] - by zimluura - 03-03-2011, 06:40 PM
[No subject] - by NaN - 03-03-2011, 09:14 PM
[No subject] - by zimluura - 03-03-2011, 09:16 PM
[No subject] - by zimluura - 03-06-2011, 12:08 AM
[No subject] - by NaN - 03-06-2011, 12:17 AM
[No subject] - by NaN - 03-10-2011, 06:12 PM
[No subject] - by zimluura - 03-12-2011, 05:50 AM
[No subject] - by NaN - 03-12-2011, 06:34 PM
[No subject] - by NaN - 03-17-2011, 10:08 AM
[No subject] - by joevenzon_phpbb2_import3 - 03-17-2011, 10:37 AM
[No subject] - by NaN - 03-26-2011, 08:36 PM
[No subject] - by zimluura - 03-26-2011, 10:02 PM
[No subject] - by NaN - 03-27-2011, 03:58 PM

Forum Jump:


Users browsing this thread: 2 Guest(s)