Go to file
2013-02-23 21:43:26 +00:00
bin [Add] Basic audio framework and some sounds. Give me another 30 mins and it will work. :) 2013-02-22 01:59:19 +00:00
dat [Add] Sound base support. 2013-02-22 05:34:24 +00:00
gfx [Add] OpenAL to makefile. Preparing for Audio enginey thing. 2013-02-21 23:42:47 +00:00
lib/lua [Fix] time(NULL) segfaulting stuff. 2013-02-17 02:50:37 +02:00
screenshots [Fix] Screenshots will allow up to 128 shots now without overwriting. These will go to a nice screenshots directory for you. 2013-02-20 21:37:02 +00:00
scripts/ai [Change] Sanitized lua ai api a little. 2013-02-23 17:53:31 +00:00
snd [Add] Basic audio framework and some sounds. Give me another 30 mins and it will work. :) 2013-02-22 01:59:19 +00:00
src [Fix] Hm. Fixing locally the testing on a remote server means push and pull spam. :) 2013-02-23 21:43:26 +00:00
utils [Add] Updated documentation crap. 2013-02-15 19:08:38 +00:00
win32 [Add] Initial mingw support for Windows. 2013-03-04 19:16:29 +00:00
.gitignore [Add] Initial mingw support for Windows. 2013-03-04 19:16:29 +00:00
README [Add] When I last updated controls in README, I knew I would miss something. Here it is. 2013-02-23 20:45:37 +00:00

Lephisto : SaraCraft Studio's

Overview:
~~~~~~~~~
Lephisto was the first game project I worked on. I have decided to start a new project and as originally planned when
ceasing work on the original, re-use the name!

Dependencies:
~~~~~~~~~~~~~
OpenGL
SDL
sdl_image
freetype2
libpng

Compiling:
~~~~~~~~~~

----------------------
-- Linux.
  -- cd Lephisto/bin/
  -- make
----------------------

Instalation:
~~~~~~~~~~~~~
Installation is not currently supported.

Bugs/Crashes and problems:
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Please visit the bug tracker https://github.com/Allanis/Lephisto/issues?state=open
and report any issues that you are having. Please ensure that your bug has not
already been documented before posting.


Dependencied:
~~~~~~~~~~~~~
	-- Debian:
		-- Binary:
			-- libsdl1.2debian
			-- libsdl-image1.2
			-- libgl1-mesa-dri
			-- libopenal0a
			-- libvorbis0a
			-- libvorbisfile3
			-- libxml2
			-- libttf2

		-- Source:
			-- libsdl1.2-dev
			-- libsdl-image1.2-dev
			-- libgl1-mesa-dev
			-- libopenal-dev
			-- libvorbis-dev
			-- libxml2-dev
			-- libttf-dev


Instructions:
~~~~~~~~~~~~~
Keys:
  =========================================================
  Lephisto uses a dynamic keybinding system that allows you
  to configure the keybinds to joystick, keyboard or a mix
  of both.
    -- Joystick.
  If you are going to use a joystick, You will have to tell
  Lephisto which joystick to use. You can either use the -j
  or -J parameter from the terminal or put it in the conf
  file.
    -- Eg.
      -- ./Lephisto -j 0
      -- ./Lephisto -J "Precision"
        -- joystick = "Precision" # in conf file.

    -- Syntax.
      KEY_IDENTIFIER = { type = KEY_TYPE, key = KEY_NUMBER,
            [reverse = KEY_REVERSE] }

      KEY_IDENTIFIER is the indetifier given below:
      KEY_TYPE can be one of keyboard, jaxis or jbutton.
      KEY_NUMBER is the number of the key (found with xev)
      KEY_REVERSE is whether it is reversed or not, which
        is  only useful in the case of jaxis.

      -- Eg.
        accel = { type = "jbutton", key = 0 }
  =========================================================

  Movement:
    -- w : Accelerate.
    -- a : Left.
    -- d : Right.
		-- s : Turn 180 degree, so you can stop easily.
    
  Combat:
    -- Space      : Primary weapons.
    -- Tab        : Target.
    -- 'r'        : Target closest hostile ship.
    -- 'f'        : Faces the target.
    -- 'b'        : Board the target.
    -- Left Shift : Fires secondary weapon.
    -- 'q'        : Switches to the next secondary weapon.

  Space:
    -- 'p' : Cycles through planets.
    -- 'l' : Attempts to land or targets nearest planet.
		-- 'h' : Cycles through hyperspace jump points.
		-- 'j' : Jump through hyperspace.

  GUI:
    -- UP   : Zoom in.
    -- DOWN : Zoom out.
    -- F12  : Take a screenshot.
		-- ESC  : Menu.

--------------------------------
Developers:
  Allanis

Contributors:
  KonoM - AKA Tamir.
--------------------------------