GithubHelp home page GithubHelp logo

android-sprite-batcher's Introduction

Android-Sprite-Batcher

By Tim Wicksteed

Sprite Batcher is a tool to help draw 2D sprites in Android using OpenGL. It handles all the interaction with the OpenGL client and offers you a set of simple draw() methods to handle all your drawing needs.

Version Log

v1.31 - Added license to every source file.

v1.3 - Added drawLine(), drawTile() and ARGB parameters. These features are beta and may not be bug free. Use at your own risk.

v1.2 - Added text support using a font atlas.

Features

  1. Draw sprites with OpenGL with less than 10 lines of code
  2. Batches sprites together to optimise performance
  3. Range of draw methods including rotation and scaling options
  4. ARGB colour transformations (Warning: Reduces efficiency)
  5. Generate sprite atlas from font for drawing text
  6. Draw point to point lines with repeated patterns (1D)
  7. Draw tiled texture with repeated pattern (2D) **EXPERIMENTAL**

Getting SpriteBatcher

Get a copy of the repo by either:

  • Forking/cloning (all you GitHub afficianados will already know how to do this!)
  • Downloading directly as a .zip file using the button near the top of the screen

Adding SpriteBatcher to your project

Using a library project:

  • Import the entire Android-Sprite-Batcher project folder into Eclipse using File -> Import -> Existing Android Code Into Workspace.
  • Right click on the newly imported project and click Properties -> Android -> check 'Is Library'
  • Right click on your application that you want to use Sprite Batcher in and click Properties -> Android -> Under libraries click 'add' and select the Android-Sprite-Batcher.

Using a JAR:

  • Simply copy the Android-Sprite-Batcher-vX.X.jar from the releases folder into the lib folder of your Android project.
  • Note: you will not have access to the javadoc markup by going this route, whereas if you use the library project you will.

Using SpriteBatcher

Watch the videos below to find out how to use SpriteBatcher.

Tutorial pt 1 - The Basics

Tutorial pt 2 - Ordering Sprites

Tutorial pt 3 - Drawing Text

... more coming soon, I'm trying to release 1 per week.

Hints and Tips

Like all implementations of openGL some devices don't like it if you provide non-power 2 textures ie 256x256 512x512 1024x1024 etc. If your sprites are being drawn as white squares then:

  • Make sure you are using power 2 textures (they don't have to be square ie 256x512 is fine)
  • Make sure your textures are in the drawable-nodpi folder, so Android does not scale them

If you run into "java.lang.IllegalArgumentExcep­tion: No config chosen" then try the following code before called setRenderer():

glSurfaceView.setEGLConfigChoo­ser(8, 8, 8, 8, 16, 0); 

android-sprite-batcher's People

Contributors

twicecircled avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

android-sprite-batcher's Issues

Getting exception "didn't find signature at start of lfh"

We are using zipLibrary for unzipping obb file. In the recent upgrade we are getting frequent exception with message "didn't find signature at start of lfh" which is coming from file ZipResourceFile.java. This is not 100% repro.

We didn't able to repro this locally but many customers are hitting it. Please tell in what all scenario this can occur?

OpenGl ES 2.0 - called unimplemented OpenGL ES API

Why there is a problem when using OpenGL 2.0 ....

when I'm using this code

mGLView = new GLSurfaceView(this);
mGLView.setEGLContextClientVersion(2);

it displays an empty black screen and in the log I get:

libEGL called unimplemented OpenGL ES API

batchDraw Exception

java.lang.IllegalArgumentException: capacity + offset > baseSize
 at java.nio.DirectByteBuffer.(DirectByteBuffer.java:37)
 at java.nio.ByteBuffer.allocateDirect(ByteBuffer.java:72)
 at com.twicecircled.spritebatcher.SpriteBatcher.batchDraw(SpriteBatcher.java:321)
 at com.twicecircled.spritebatcher.SpriteBatcher.onDrawFrame(SpriteBatcher.java:202)
 at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1532)
 at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1249)

java.lang.IllegalArgumentException: capacity + offset > baseSize
 at java.nio.DirectByteBuffer.(DirectByteBuffer.java:37)
 at java.nio.ByteBuffer.allocateDirect(ByteBuffer.java:72)
 at com.twicecircled.spritebatcher.SpriteBatcher.batchDraw(SpriteBatcher.java:331)
 at com.twicecircled.spritebatcher.SpriteBatcher.onDrawFrame(SpriteBatcher.java:202)
 at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1532)
 at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1249)

I do not know why this is happening

321: ByteBuffer ibb = ByteBuffer.allocateDirect(indices.length * 2);
331: ByteBuffer vbb = ByteBuffer.allocateDirect(vertices.length * 4);

Is this point

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.