Mioveni -conversion - asasinuxp - 02-27-2011
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.
- asasinuxp - 03-15-2011
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).
- NaN - 03-15-2011
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?
- asasinuxp - 03-15-2011
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.
- NaN - 03-15-2011
Quote:Yes,about the directory that doesn't exist.
It tries to write into a non existing directory. Create the directory by yourself.
- asasinuxp - 03-15-2011
TRACKEDITOR_TP/objects and RACER_TP exist.Screenshoot: http://img25.imageshack.us/i/vdrift.jpg/
And if I put the RACER_TP folder into TRACKEDITOR_TP,I've get the same error.
- NaN - 03-15-2011
What is the exact error text?
- asasinuxp - 03-15-2011
asasinuxp@ubuntu:~$ cd /host
asasinuxp@ubuntu:/host$ dof2joe/dof2joe -p TRACKEDITOR_TP/objects/ RACER_TP/*.dof
bash: dof2joe/dof2joe: No such file or directory
- NaN - 03-15-2011
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?
- asasinuxp - 03-15-2011
host/TRACKEDITOR_TP/dof2joe
- NaN - 03-15-2011
Try TRACKEDITOR_TP/dof2joe/dof2joe
- asasinuxp - 03-15-2011
asasinuxp@ubuntu:/host$ TRACKEDITOR_TP/dof2joe/dof2joe -p TRACKEDITOR_TP/objects/ RACER_TP/*.dof
bash: TRACKEDITOR_TP/dof2joe/dof2joe: No such file or directory
- NaN - 03-15-2011
./TRACKEDITOR_TP/dof2joe/dof2joe
Is there an executable dof2joe in the dof2joe directory? find . -name dof2joe
- asasinuxp - 03-15-2011
http://img842.imageshack.us/f/screenshotrkj.png/
- NaN - 03-15-2011
You have to build it first:
cd TRACKEDITOR_TP/dof2joe
make
or scons instead of make
|