Freedom Reborn

Freedom Force Forums => Technical Issues => Topic started by: Shazam on November 12, 2011, 12:20:22 AM

Title: Ubuntu/Linux
Post by: Shazam on November 12, 2011, 12:20:22 AM
Is anyone running FF or FFvTTR on Linux specifically Ubuntu?
I have managed to install FF via WINE, but i can't get it to run. I haven't tried FFVTTR as yet, just wondered if anyone has managed it.
Failing that is it possible to run the character tool in Linux? Would be nice to try a bit of skinning again.
Title: Re: Ubuntu/Linux
Post by: Outcast on November 12, 2011, 07:29:26 AM
I don't have Linux. But according to this link http://www.gog.com/en/mix/great_gog_games_that_works_on_linux (http://www.gog.com/en/mix/great_gog_games_that_works_on_linux),  :ffvstr: is among those said to work with Linux. There's an additional comment that it was "Tested in Ubuntu 10.04 and works".

Based on his comment on this thread http://freedomreborn.net/forums/index.php?topic=54559.0 (http://freedomreborn.net/forums/index.php?topic=54559.0), I believe Tawodi Osdi uses Linux, but seemed to have some trouble with the game.  :unsure:

Title: Re: Ubuntu/Linux
Post by: Shazam on November 13, 2011, 01:15:28 AM
Thanks for that info Outcast
Title: Re: Ubuntu/Linux
Post by: WaylanderPK on February 21, 2012, 01:04:43 AM
A bit of a necro - in case anyone else is looking
:ffvstr: runs great, I use the following script to run mine. I run wine-1.3.37 on Ubuntu 10.04. I have the GOG version installed.


cd '/home/peter/.wine/drive_c/Program Files/GOG.com/FFvTTR/'
winetricks  ddr=opengl multisampling=enabled winxp glsl=enabled dsoundhw=Emualted mwo=force
wine explorer.exe /desktop=FFvTR,800x600 ffvt3r.exe


I also threw together this script to convert  :ff: meshes into  :ffvstr: - it uses the modtools nifconverter.

#!/bin/bash
ffv3rdir ="/home/peter/c_drive/Program Files/GOG.com/FFvTTR/"

mkdir -p "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/converted/"
cp -rvf "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/convert/$1/" "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/converted/"
rm -rf  "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/converted/$1/keyframes.kf"
rm -rf  "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/converted/$1/character.nif"
rm -rf  "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/converted/$1/head.nif"

wine nifconvert "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/convert/$1/character.nif" "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/converted/$1/character.nif" -a "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/convert/$1/keyframes.kf" "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/converted/$1/keyframes.kf"

wine nifconvert "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/convert/$1/head.nif" "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/converted/$1/head.nif"

cp -rvf "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/converted/$1/" "/home/peter/c_drive/Program Files/GOG.com/FFvTTR/Custom/Art/library/characters/$1/"

#This will copy skins
#ls | grep -v convert | xargs -i% cp -rvf %/skins /home/peter/c_drive/Program\ Files/GOG.com/FFvTTR/Custom/Art/library/characters/%
Title: Re: Ubuntu/Linux
Post by: Epimethee on February 22, 2012, 06:35:33 AM
Thanks for the info; nice of you to share. BTW, have you been able to run mods?

(Minor typo in dsoundhw=Emualted?)

P.S.: Welcome to the forums, WaylanderPK!