Git Product home page Git Product logo

chimp-utils's Introduction

About

A collection of Kotlin API / helpers / facades for jMonkeyEngine3, that I developed while working on my game Everybody Loves Bricks:

Although Kotlin-based, it can be re-used from a Java only project.

Features

Material

Example: Unshaded Material

    override fun simpleInitApp() {
        // do this at init 
        MaterialDefinitions.load(assetManager) 
        
        // creating a material with a more simple API
        val floorMat = UnshadedMaterial()
        floorMat.setColor(ColorRGBA(155, 164, 193))

        val floor = Geometry("FLOOR", Box(10f, 10f, 10f))
        floor.material = floorMat
    }

Example: Lighting Material

    override fun simpleInitApp() {
        MaterialDefinitions.load(assetManager)
        addLighting()

        val material = LightingMaterial()
        material.setColor(Orange) // same value for 'Diffuse' and 'Specular'

        val geometry = Geometry("SPHERE", Sphere(15, 15, 1f))
        geometry.material = material
        geometry.shadowMode = RenderQueue.ShadowMode.CastAndReceive

        rootNode.attachChild(geometry)
    }

    private fun addLighting() {
        val decorLight = DirectionalLight()
        decorLight.direction = Vector3f(-1f, 1f, -2f).normalizeLocal()
        decorLight.color = ColorRGBA.White
        rootNode.addLight(decorLight)
    }

This snippet (Kotlin):

    val material = LightingMaterial()
    material.setColors(ColorRGBA.Orange, ColorRGBA.White)

is equivalent to the following in the jme3 API (Java):

    Material material = new Material(assetManager, "Common/MatDefs/Light/Lighting.j3md");
    material.setBoolean("UseMaterialColors", true);
    material.setColor("Diffuse", ColorRGBA.Orange);
    material.setColor("Specular", ColorRGBA.White);

ColorRGBA

Create a ColorRGBA in hexadecimal:

    override fun simpleInitApp() {
        viewPort.backgroundColor = ColorRGBA("#1c3064")
    }

or with 255-based int values:

    override fun simpleInitApp() {
        viewPort.backgroundColor = ColorRGBA(155, 164, 193)
    }

Node

Add multiple Spatial children, as varargs or collections:

import be.encelade.chimp.utils.NodeHelperUtils.attachChildren
import com.jme3.scene.Geometry
import com.jme3.scene.Node

class SceneNode : Node("MY_SCENE") {

    init {
        attachChildren(makeFloor(), makeGrid())
    }

    private companion object {

        fun makeFloor(): Geometry {
            // ..
        }

        fun makeGrid(): Geometry {
            // ...
        }

    }
}

Vector Operators

    import be.encelade.chimp.utils.VectorOperatorUtils.plus

    // ...
    val v1 = Vector3f(2f, 1f, 1f)
    val v2 = Vector3f(4f, 4f, 4f)

    // prints (6.0, 5.0, 5.0)
    println(v1 + v2)

Tpf Accumulator

The Tpf Accumulator is a mechanism to run actions (i.e. callback) periodically at a certain frequency (e.g. 2 Hz), based on the accumulated tpf being received from the engine.

It is designed for periodic actions that don't need to run as often as tpf updates (that can easily be in the 200 Hz range), in order to create timers-liked behavior within the main engine thread.

It can be used for example to trigger a refresh of the UI, update the scene based on game state changes or implement cycle-based game entity (e.g. a machine that outputs a product every 1 sec. in a Factorio-like game).

Example: Run something every 2 seconds

class DemoSimpleApp : SimpleApplication() {

    private val tpfAccumulator = TpfAccumulator(.5f) { tpf ->
        val fps = (1 / tpf).toInt()
        println("[${DateTime.now()}] running at $fps FPS")
    }

    override fun simpleUpdate(tpf: Float) {
        tpfAccumulator.simpleUpdate(tpf)
    }
}
[2020-11-28T12:29:18.940+01:00] running at 282 FPS
[2020-11-28T12:29:20.939+01:00] running at 307 FPS
[2020-11-28T12:29:22.937+01:00] running at 298 FPS
[2020-11-28T12:29:24.936+01:00] running at 222 FPS
[2020-11-28T12:29:26.937+01:00] running at 287 FPS
[2020-11-28T12:29:28.938+01:00] running at 220 FPS

Samples / Examples

Import with Gradle

    repositories {
        maven { url "https://jitpack.io" }
    }

    def chimpUtilsVersion = "1.7.0"
    
    dependencies {
        compile "com.github.benckx.chimp-utils:chimp-utils-basics:$chimpUtilsVersion"
        compile "com.github.benckx.chimp-utils:chimp-utils-jme3:$chimpUtilsVersion"
    }

Project Structure

  • chimp-utils-basics does not have any dependency to jme3. If you split your game logic from your rendering logic, i.e. if you split your game into a "game logic" module (with no dependency to jme3) and a "engine render" module, then this library can be used in your game logic module, without the requirement to link to any jme3 library.
  • chimp-utils-jme3 contains the APIs that depend on jme3 (only jme3-core).

Change log

Version 1.7.0

  • Upgrade Kotlin from 1.5.21 to 1.6.21
  • Upgrade LWJGL from 2.9.3 to 3.3.1
  • Upgrade jMonkeyEngine3 from 3.3.2-stable to 3.5.2-stable
  • Remove dependency to Joda Time

Related Projects

chimp-utils's People

Contributors

benckx 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.