Page 1 of 2 12 LastLast
Results 1 to 10 of 26

Thread: HOWTO: Get Grim Fandango Working with Wine

Hybrid View

  1. #1
    Join Date
    Feb 2005
    Location
    Umeå, Sweden
    Beans
    733
    Distro
    Ubuntu 14.04 Trusty Tahr

    HOWTO: Get Grim Fandango Working with Wine

    This is a game I had trubble getting to work. It will function somewhat good without these steps, but it might cause wine to crash (something that never happened to med after I did this).

    I could not find any good tutorial for this on the forum (or on the net), so I decided to compile one myself

    Step 1: Getting Wine
    For this you need the official build of Wine (not the ubuntu build), in case you haven't already added this repository, this is how you do it:

    Open up a terminal and type these commands (for gutsy, if you use a different version of ubuntu, follow the instructions here: Wine Download
    ):

    Code:
    wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add -
    sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/gutsy.list -O /etc/apt/sources.list.d/winehq.list
    sudo apt-get update
    sudo apt-get install wine
    This build works on both x86 and amd64!

    Step 2: Configuring Wine
    Grim Fandango will not run in full screen (or windowed, as is made possible by the launcher you will get later), but rather, you need to configure wine to emulate a virtual desktop, and run the game in full screen inside that (which will work best).

    Type in your terminal:

    Code:
    winecfg
    Click on the "Graphics" Tab and check "Emulate a virtual desktop", now you need to define the size for this desktop. I prefer 1024x768 since I think it gives me enough room to actually do something, but that is up to you (and the game will scale it anyway).

    Now, click "Apply" and close the configuration window

    Step 3: Installing Grim Fandango
    Now, simply pop the Grim Fandango CD1 into your drive and launch the installation program. Install the game to wherever you like.
    Do not install the patch yet! (released by LucasArts to fix some bugs and add Windows XP compability), that comes later!


    Step 4: Getting a Custom Launcher
    Download and unzip this file


    Create the folder .grimfandango in your home directory ("mkdir .grimfandango" in your console), and move "Grim Launcher.exe" to this directory.

    Step 5: Setting It Up As a Menu Item

    Download this icon to the .grimfandango directory.

    Now, type in terminal:

    (if you are using Kubuntu, replace gedit with kwrite, if you are using Xubuntu replace it with mousepad)

    Code:
    sudo gedit /usr/bin/grimfandango
    Now, copy paste this into the file (make sure to replace: <yourusername> with your username)

    Code:
    #!/bin/bash
    
    cd /home/<yourusername>/.grimfandango/
    wine Grim\ Launcher.exe
    Save and close.
    Now, type in terminal:

    Code:
    sudo chmod +x /usr/bin/grimfandango
    Now, type this in your terminal:

    Code:
    sudo gedit /usr/share/applications/grimfandango.desktop
    And copy & paste this into the newly opened file (Again: make sure to replace: <yourusername> with your username):

    Code:
    [Desktop Entry]
    Version=1.0
    Encoding=UTF-8
    Name=Grim Fandango
    Comment=Classic adventure game
    Exec=grimfandango
    Icon=/home/<yourusername>/.grimfandango/15895.jpg
    Terminal=false
    X-MultipleArgs=false
    Type=Application
    Categories=Application;Game;Adventure;
    Save and close.
    You should now be able to find "Grim Fandango" in your games menu.

    Step 6: Starting the Launcher for The First Time
    There are still some things to be done for the game to run well. Start the launcher from the menu (notice the emulated desktop around the launcher window).
    The Launcher should comment on that you have not installed the patch for the game, and if you would like to do so now. Let it install the patch (this is the only way I got the path installation program to work). Follow the instructions for the installer.

    When the patch is installed, click "Options" and then "Run Grim From Hard Drive"
    The Launcher will ask you to place CD1 in the drive, do that and let it continue. It may seem to freeze, but it is simply working. After a while it will ask for CD2, pop it in the drive and continue.

    The game may crash if you use the CDs while playing.

    Step 7: Starting the Game

    The Game is now ready for play. Make sure to always start it with the "Play Fullscreen" button.


    Known Problems
    The game will run fine, but with some flaws.
    Your character will leave black tracks where he moves (this isn't to bad though, it will not obstruct the game).

    Also, the sound may become funky at times, the only workaround for this that I can find, is to save the game, and restart (the sound should be fine again). This does not happen very often, so it shouldn't be a big problem.

    You may sometime find that all keys don't work, just click the game window and it should start working again.


    Enjoy the game!!
    Attached Images Attached Images
    My cross-platform python modules for PVA or population simulation https://code.google.com/p/nobones/, written in Ubuntu!

  2. #2
    Join Date
    Sep 2005
    Beans
    51

    Re: HOWTO: Get Grim Fandango Working with Wine

    thanks!

  3. #3
    Join Date
    Jul 2008
    Location
    Keansburg
    Beans
    149
    Distro
    Ubuntu Jaunty Jackalope (testing)

    Re: HOWTO: Get Grim Fandango Working with Wine

    Good guide and fun game
    Ubuntu user since 2006
    Spreading the word since day one

  4. #4
    Join Date
    Sep 2007
    Beans
    75
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO: Get Grim Fandango Working with Wine

    very good guide, thank you. The game works but only in a small window... any ideas on how to get it full screen? I setup winecfg as stated in the guide but doesn't seem to have an effect, always goes to a 800x600 window....


    thanks!

  5. #5
    Join Date
    Sep 2007
    Beans
    75
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HOWTO: Get Grim Fandango Working with Wine

    I used an ugly fix and just lowered my screen resolution so the game took up more of the screen... not clean but works

  6. #6
    Join Date
    Dec 2007
    Location
    Shepperton, UK.
    Beans
    2,489
    Distro
    Ubuntu Development Release

    Re: HOWTO: Get Grim Fandango Working with Wine

    Excellent post, thanks Kimm. I'll now try and get some more windows games going with wine.
    Intel E5700 G41 8Gb Xubuntu 13.10, Ubuntu 13.4, WinXP.
    Revo R3610 Win7 Pro, Ubuntu 13.04

    Absolute Beginners Compiz-fusion wiki Local Weather

  7. #7
    Join Date
    Apr 2010
    Beans
    298

    Re: HOWTO: Get Grim Fandango Working with Wine

    Step 5: Setting It Up As a Menu Item

    Download this icon to the .grimfandango directory.

    Now, type in terminal:

    (if you are using Kubuntu, replace gedit with kwrite, if you are using Xubuntu replace it with mousepad)

    Code:
    sudo gedit /usr/bin/grimfandango
    Now, copy paste this into the file (make sure to replace: <yourusername> with your username)

    Code:
    #!/bin/bash
    
    cd /home/<yourusername>/.grimfandango/
    wine Grim\ Launcher.exe
    Save and close.
    Now, type in terminal:

    Code:
    sudo chmod +x /usr/bin/grimfandango
    Now, type this in your terminal:

    Code:
    sudo gedit /usr/share/applications/grimfandango.desktop
    And copy & paste this into the newly opened file (Again: make sure to replace: <yourusername> with your username):

    Code:
    [Desktop Entry]
    Version=1.0
    Encoding=UTF-8
    Name=Grim Fandango
    Comment=Classic adventure game
    Exec=grimfandango
    Icon=/home/<yourusername>/.grimfandango/15895.jpg
    Terminal=false
    X-MultipleArgs=false
    Type=Application
    Categories=Application;Game;Adventure;
    Save and close.
    You should now be able to find "Grim Fandango" in your games menu.

    Great tutorial easy to follow even for me but this file is deleted is there a way to reupload it ????

  8. #8
    Join Date
    Dec 2011
    Beans
    1

    Re: HOWTO: Get Grim Fandango Working with Wine

    Its only 6 months later.

    It doesnt matter what the .jpg picture is of. I just googled Grim Fandango and saved an icon sized picture to my .grimfandango file and renamed it 15895.jpg


    One problem Im getting is once I shut down my computer I lose GF in my Games. Not a problem because I dont have much on here ( I dont like clutter)so its easy to find. Also I suspect its just resized for by the program but I just have a small window even when opening it with Full Screen.

    Also when I use the F1 my save screens are inverted and backwards. Not a problem..just annoying.

    On a side note...I cant imagine how I solved this more then 10 years ago without the internet walkthroughs/

  9. #9
    Join Date
    Jul 2007
    Location
    Karlsruhe/Germany
    Beans
    2
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Install the patch

    For me letting the Launcher install the patch did not work (Ubuntu 11.10, Wine 1.2.3). It downloaded just fine but when the patch process should have been started it gave an error ("Unhandled page fault on read access").

    This command, I got from WineHQ did work however:
    Code:
    cd ~/.wine/dosdevices/c:/Programme/LucasArts/Grim
    wine start /unix gfupd101.exe
    Have fun.

  10. #10
    Join Date
    Dec 2008
    Beans
    111

    Re: HOWTO: Get Grim Fandango Working with Wine

    Hello,
    I apologise if the question has already been answered.
    I did installation then I patched it.
    Nevertheless I try to run and it says "no disc inserted".
    What should I do?
    Thanks,
    MA

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •