Skip to content
mastergreg edited this page Nov 15, 2011 · 10 revisions

Welcome to our wiki!

A few words about the game

PewPew is a 2D space shooter game. It is under heavy development currently supporting linux and windows. Writen in C++ using only OpenGL (GLUT) and OpenAL (alut). Still in early stages however fun to play.

Feel free to contribute any suggestions, patches and bug reports.

DEPENDENCIES

  • compiler:
    1. g++ or equivalent compiler
    2. make (optional)
  • libs:
    1. freeglut3-dev
    2. libalut-dev

INSTALL

Windows

For Windows there are precompiled binaries for 32 bit architecture including all the required dlls.

  1. Simply download the zip archive from here.
  2. Extract it to the folder of your liking and run PewPew.exe

Linux

In Linux you have to compile from source.

  1. Install g++ git-core make freeglut3-dev and libalut-dev packages through your distribution's package manager.
  2. Launch a console
  3. Clone the repo by running git clone git://github.com/mastergreg/pewpew.git
  4. Run cd pewpew && make
  5. Run ./pewpew

MacOS

For MacOS again there are no binary releases yet and building from source is a bit tricky. Currently working MacOS sources are on mac-os branch. Will update with binary releases for 32 and 64 bit arch soon.

LICENSE

(The MIT License)

Copyright (c) 2011 Gregory Liras

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Clone this wiki locally