Git Product home page Git Product logo

inari-firefly-libgdx's Introduction

Firefly with LibGDX

Build Status

Projects this depends on: commons Build Status firefly-core Build Status

Introduction

Firefly is a top level 2D game engine framework for Java focusing on intuitive API build on stringent architecture and design. What makes it different to other java gaming frameworks is its focus on build and manage components and game objects within a component- entity-system approach and being independent from low level implementation(s).

The main idea of Firefly is to have a top-level 2D game API that comes with a in-build Component-Entity-System architecture that helps organizing all the game-objects, data and assets in a well defined form and also helps a lot on keeping the game codebase as flexible as possible for changes, modify/adding new behavior during the development cycle. What is one of the most impressive benefits of a Component-Entity-System based architecture and design approach. Firefly is implemented on-top of other existing java gaming frameworks like lwjgl or libgdx with the flexibility to change the lower level implementation while reusing as much of the game code as possible.

Key features

  • Strong backing on Component and Component-Entity-System approach. Almost everything within Firefly is a Component or a Entity (composite of components) or a System

  • Lightweight but power-full and easy extendable event system for communication between Systems.

  • Component Attributes Every Component in Firefly has a Attribute interface where its attributes (and meta information) can be accessed within attribute maps. This makes it possible to serialize the state of a component into what-ever format you need (XML, json...) and also create a Component from. Or the attribute mapping allows to access the attributes within a UI tool inspector for example.

  • Independent Lower Level interface definition There are a few interface definitions that must be implemented to implement Firefly within a lower level library like lwjgl or libgdx. All code that is written against the Firefly API is not affected by the change of the lower level library. Until now only a project with an implementation for libgdx is supported.

  • Stringent Component builder API and Context driven Firefly is context driven, this means no static method calls like Firefly.files.createAsset(...) and since almost everything within Firefly is a Component, there is a component builder that is used to build every kind of Component within the same way and with good code completion suggestions possibilities and a fluent interface.

Code example:

  context.getComponentBuilder( TextureAsset.TYPE )
      .set( TextureAsset.NAME, "logoTexture" )
      .set( TextureAsset.RESOURCE, "logo.png" )
      .set( TextureAsset.WIDTH, 200 )
      .set( TextureAsset.HEIGHT, 100 )
      .build();
  • Indexing for Component types and instances for fast access Firefly comes with an indexing system that allows to index Java types (Class types) within a defined root type on one hand and on the other to index instances (objects) of a specified type. All Components, Entities and Systems are indexed by type and mostly, if needed also by instance to guarantee fast access.

NOTE:

At this time there are three Firefly projects on gitHub.

  • The firefly-core project offers the core API with the entity-system and entity-components and some other useful systems and components for core features like asset-management, view and viewports, audio, animation, text, simple collision management and a few others.
    The core API also defines the lower-level interfaces but has no implementations for this interfaces. Therefore the firefly-core API is independent from low-level API and can be implemented for different API's like lwjgl or libGDX
    If someone is interested in implementing the firefly API for a particular low level API, this is a good start point.

  • The firefly-lib project depends on the firefly-core project and offers some additional systems and components that are not part of the firefly-core API. Therefore the firefly-lib project will change mach more then the firefly-core project which remain more stable.

  • The firefly-libGDX project (this project) is the only low-level implementation at this time. As the names says, the firefly-core API is implemented on top of the libGDX API. If someone wants just get a complete and running firefly API to start coding a game, this is the starting point Get and install the firefly API with libGDX implementation is straightforward. Following the instructions here.

    Installation

    • TODO

inari-firefly-libgdx's People

Contributors

andreashefti avatar inarisoft avatar

Watchers

 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.