Code Monkey home page Code Monkey logo

jgeck's Introduction

jGECK

Build Status Codacy Badge codebeat badge

Garden of Eden Creation Kit - map editor for Fallout 2 (or one day it will be)

Build and run

Using Gradle: From console using Gradle: ./gradlew clean build run on *nix or gradle.bat clean build run on Windows

Using IntelliJ IDEA: In IDEA run project as Gradle build and add clean build run to Tasks in the build Configuration

FAQ

What is the goal of this project?

An all-in-one package for Fallout 2 and Falltergeist modding including map and SSL script editor.

Credits

Special thanks to the Falltergeist and EVO projects.

jgeck's People

Contributors

codacy-badger avatar jansimek avatar

Watchers

 avatar  avatar

jgeck's Issues

RIX image is not displayed correctly

dark

The image is too dark.

// Falltergeist
//palette[i] = (r << 26 | g << 18 | b << 10 | 0x000000FF);  // RGBA
// jGECK
palette[i] = (0xFF << 24 | r << 16 | g << 8 | b);  // ARGB ?

// because PixelFormat expects ARGB instead of RGBA
WritableImage img = new WritableImage(rix.getWidth(), rix.getHeight());
PixelWriter pw = img.getPixelWriter();
pw.setPixels(0, 0, rix.getWidth(), rix.getHeight(), PixelFormat.getIntArgbPreInstance(), rix.getData(), 0, rix.getWidth());
				

There are only six RIX images located in art\splash directory.

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.