Announcement

Collapse
No announcement yet.

[soon?] Soon Source Engine under Unix????

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • [soon?] Soon Source Engine under Unix????

    Hi Guys today I browsed in the new Beta GCFs from CS Source Beta. It seems Valve planed to use the OSX Engine for UNIX (Linux). I found in the "counter-strike source beta engine.gcf" a file named "hl2.sh".

    This is the Code from the "hl2.sh"...


    Code:
        #!/bin/bash
         
        # figure out the absolute path to the script being run a bit
        # non-obvious, the ${0%/*} pulls the path out of $0, cd's into the
        # specified directory, then uses $PWD to figure out where that
        # directory lives - and all this in a subshell, so we don't affect
        # $PWD
         
        GAMEROOT=$(cd "${0%/*}" && echo $PWD)
         
        #determine platform
        UNAME=`uname`
        if [ "$UNAME" == "Darwin" ]; then
           # prepend our lib path to LD_LIBRARY_PATH
           export DYLD_LIBRARY_PATH="${GAMEROOT}"/bin:$DYLD_LIBRARY_PATH
        elif [ "$UNAME" == "Linux" ]; then
           # prepend our lib path to LD_LIBRARY_PATH
           export LD_LIBRARY_PATH="${GAMEROOT}"/bin:$LD_LIBRARY_PATH
        fi
         
        if [ -z $GAMEEXE ]; then
          GAMEEXE=hl2_osx
        fi
         
        ulimit -n 2048
         
        # and launch the game
        cd "$GAMEROOT"
         
        STATUS=42
        while [ $STATUS -eq 42 ]; do
            ${DEBUGGER} "${GAMEROOT}"/${GAMEEXE} "$@"
            STATUS=$?
        done
        exit $STATUS

  • #2
    so this is entirely new?
    nice to see, I guess.

    Comment


    • #3
      Doesn't really mean much since they have now publicly stated the Linux Client isn't coming!

      Comment


      • #4
        The comment was about porting Steam, not about porting Source Engine.

        Comment


        • #5
          But you need Steam to be able to play CS:S no?

          Comment


          • #6
            I'm 99% sure this is old news. IIRC Michael even dedicated a whole news-post just to exactly this script, months ago.

            Comment


            • #7
              Originally posted by Zhick View Post
              I'm 99% sure this is old news. IIRC Michael even dedicated a whole news-post just to exactly this script, months ago.
              Actually the beta was only opened by valve recently, so it is odd they have that in there.

              Comment


              • #8
                Originally posted by liamdawe View Post
                Doesn't really mean much since they have now publicly stated the Linux Client isn't coming!
                It's still coming.
                Michael Larabel
                https://www.michaellarabel.com/

                Comment


                • #9
                  this whole situation makes me laugh.
                  valve denies the client.
                  michael insists that it exists.
                  personally, I believe michael, but the situation is amusing.

                  Comment


                  • #10
                    Originally posted by Michael View Post
                    It's still coming.
                    I am sitting on the fence on this one, mainly because you said the same things about AMD's info release for the varying Radeons and the increasing interaction we're seeing with AMD on the work there.

                    Not that it matters all that much to me- I've got other axes to grind right at the moment. More interesting times for Linux gaming is coming very soon.

                    Comment

                    Working...
                    X