Results 1 to 8 of 8

Thread: How do I install Open Real Time Strategy (ORTS)?

  1. #1
    Join Date
    Sep 2008
    Beans
    226
    Distro
    Kubuntu 11.10 Oneiric Ocelot

    How do I install Open Real Time Strategy (ORTS)?

    I tried making it, but when the make began it gave me the strange error of

    "makefile:259: *** "!!!!! unknown OSTYPE= !!!!". Stop."

    Am i in need of exporting some variable, or is there a bug in the makefile that doesn't let it work with ubuntu? I would like to work on developing games, and looking at ORTS might benefit me.

    Also, to download ORTS (code only):
    svn co svn://anonymous@bodo1.cs.ualberta.ca:/all/pubsoft/orts
    svn co svn://anonymous@bodo1.cs.ualberta.ca:/all/pubsoft/orts_data
    password is guest (for the anonymous account)

    Please, Help!
    Last edited by Coder543; December 23rd, 2008 at 02:40 PM.

  2. #2
    Join Date
    Sep 2008
    Beans
    226
    Distro
    Kubuntu 11.10 Oneiric Ocelot

    Re: How do I install Open Real Time Strategy (ORTS)?

    Bump. An answer? I seriously don't ask that difficult of questions....

  3. #3
    Join Date
    Apr 2007
    Location
    Linköping, Sweden
    Beans
    40
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: How do I install Open Real Time Strategy (ORTS)?

    Hi Coder543,

    A good place to start when building a new project is the README file or maybe INSTALL. In this case it instructs the user to check the makefile for information about setting OSTYPE. At the top of the makefile you'll find the instructions you're looking for.

    The problem is that the environment variable OSTYPE is set to "linux-gnu" (at least on my Ubuntu system) and the makefile checks for just plain "linux". The simplest way to remedy this is to run
    Code:
    OSTYPE=linux make
    in the terminal instead of just "make". Be sure that you fulfill all the other requirements mentioned in the README file as well, I saw that there were a bunch of them.

    Hope this helps!

    Regards, Mattias

  4. #4
    Join Date
    Sep 2008
    Beans
    226
    Distro
    Kubuntu 11.10 Oneiric Ocelot

    Re: How do I install Open Real Time Strategy (ORTS)?

    That did help... a bit. However I am confused by this: "libs/ai/movement/src/Movement.H:37:30: error: boost/function.hpp: No such file or directory"

    Shouldn't ORTS include that file? Or is there some really obvious thing I am not knowing to do?

  5. #5
    Join Date
    Sep 2007
    Location
    College Park, MD
    Beans
    3
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: How do I install Open Real Time Strategy (ORTS)?

    The thread is old, but maybe this response will help.

    Open the README file in ORTS/trunk/. It'll give you directions on what you need to install.

    Note that it mentions running a premade script to grab all dependencies on Ubuntu systems (hurray!)

    In ORTS/trunk/config/, type:

    Code:
    sudo ./installdeps.ubuntu804.sh
    Wait for apt to do its thing.

    Next, (still reading the README), note that it requires

    Code:
    sudo OSTYPE=linux make init
    run once, to create some directories. That is your problem.

    After this, try the

    Code:
    sudo OSTYPE=linux make
    mentioned above to execute a full compile.

  6. #6
    Join Date
    Sep 2008
    Beans
    226
    Distro
    Kubuntu 11.10 Oneiric Ocelot

    Re: How do I install Open Real Time Strategy (ORTS)?

    ok, cool... only it is a little bit too late. I've spent a lot of the summer mastering the use of NGE (NuSoftware Game Engine) which, in turn, uses Irrlicht and IrrKlang.
    "Linux is like a wig-wam, no gates, no windows, and apache inside." -LinLux451

  7. #7
    Join Date
    Sep 2007
    Location
    College Park, MD
    Beans
    3
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: How do I install Open Real Time Strategy (ORTS)?

    It sounds like ORTS is good for what it's meant to do -- provide an easy to use, OSS RTS platform for AI agent modeling.

    And use OGRE! It has a great user-base, great documentation . . . .

  8. #8
    Join Date
    Sep 2008
    Beans
    226
    Distro
    Kubuntu 11.10 Oneiric Ocelot

    Re: How do I install Open Real Time Strategy (ORTS)?

    irrlicht has a great community and set of documentation. lol, both of our opinions are probably biased... but I like Irrlicht.
    "Linux is like a wig-wam, no gates, no windows, and apache inside." -LinLux451

Tags for this Thread

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
  •