Giter VIP home page Giter VIP logo

elysion's Introduction

Elysion Framework

What is this?

Elysion is a cross-plaform (currently supporting Windows, Linux and Mac OS X) framework for creating games with ease and is therefore suited for rapid prototyping.

Who made this?

Elysion has been more or less regurarly in development since 2005 and has been created by Johannes Stein.

Thanks to anyone who used (or whom I forced to use ;) ) this framework. This
framework would not exist in its current form without those people:

  • Sven Rech (Initial Linux testing)
  • David Herzog (Early sprite lists and in general a very helpful guy)
  • Jesse Klugmann
  • Christian Fuchs
  • Arthur Baude
  • Dominique Louis (He made SDL bindings for Object Pascal)
  • Sam Lantinga (The creator of SDL)

Also thanks to these pieces of software which inspired me:

  • Irrlicht 3D Engine
  • Horde 3D / Horde 3D GameEngine
  • Gosu
  • Unity3D

What does it look like?

Elysion is designed to be high-level with its API to be very simple and intuitive.
Here is a chunk of code which loads a sprite, displays the sprite and randomly
changes its color with each click.

var mySprite: TelSprite;

mySprite := TelSprite.Create;
mySprite.LoadFromFile('mySprite.png');

mySprite.Draw;

if (mySprite.Click) then
begin
  Randomize;
  mySprite.Color.R := Random(255);
  mySprite.Color.G := Random(255);
  mySprite.Color.B := Random(255);
  // Alternative you could also write: mySprite.Color := makeCol(Random(255), Random(255), Random(255));
end;

License

Elysion is dual-licensed under the MIT and MPL license. Choose which one you like the most or use both if you feel like it.

Be careful though: Other third-party libraries included in this package (in /lib/Dependencies) may use a different license.

elysion's People

Contributors

frostney avatar joseph-montanez avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.