I've made a track for Racer,and I want to convert to Vdrift.I've found something here:
http://wiki.vdrift.net/Importing_Racer_tracks ,but this is for Linux.It can be made in Windows?Is there any faster method(scripted)?The track has .jpg and .tga textures.
I've trying to convert in linux,but I get stuck here:
Code:
dof2joe/dof2joe -p TRACKEDITOR_TP/objects/ RACER_TP/*.dof
How should be the folder hierarchy?
I put RACER_TP and TRACKEDITOR_TP(downloaded from trunk) in /host,and I use the command cd /host ,then the above code(after convert all texture names to lowercase).
Looks like you'll have to figure it out by yourself.
Are you getting any output from dof2joe? Is TRACKEDITOR_TP/objects/ populated with textures, objects.jpk, list.txt?
NaN Wrote:Are you getting any output from dof2joe?
Yes,about the directory that doesn't exist.
NaN Wrote:Is TRACKEDITOR_TP/objects/ populated with textures, objects.jpk, list.txt?
No.
http://img25.imageshack.us/i/vdrift.jpg/
The E:/ directory from windows is host/ from linux.
Quote:Yes,about the directory that doesn't exist.
It tries to write into a non existing directory. Create the directory by yourself.
What is the exact error text?
asasinuxp@ubuntu:~$ cd /host
asasinuxp@ubuntu:/host$ dof2joe/dof2joe -p TRACKEDITOR_TP/objects/ RACER_TP/*.dof
bash: dof2joe/dof2joe: No such file or directory
Quote:bash: dof2joe/dof2joe: No such file or directory
bash can't find dof2joe/dof2joe to run. Check if the path is correct. Where is dof2joe directory relative to the current one?
host/TRACKEDITOR_TP/dof2joe
Try TRACKEDITOR_TP/dof2joe/dof2joe
asasinuxp@ubuntu:/host$ TRACKEDITOR_TP/dof2joe/dof2joe -p TRACKEDITOR_TP/objects/ RACER_TP/*.dof
bash: TRACKEDITOR_TP/dof2joe/dof2joe: No such file or directory
./TRACKEDITOR_TP/dof2joe/dof2joe
Is there an executable dof2joe in the dof2joe directory? find . -name dof2joe
You have to build it first:
cd TRACKEDITOR_TP/dof2joe
make
or scons instead of make