PlayN is an open-source, cross-platform game development framework that provides a single Java API that can be used to generate HTML5, Android, iOS, ActionScript/Flash, and desktop Java/applet clients.

learn more… | top users | synonyms

0
votes
0answers
16 views

New generated Maven PlayN project displays errors on android screen

after hours and hours of search to get it running I'm stuck now. So what happened? I tried to dive into the PlayN framework to code my first game on android. With a little struggle I generated my ...
3
votes
0answers
25 views

PlayN - Virtual keyboard on iOS and Android

Is there a way to programmatically trigger the virtual keyboard on iOS and Android in PlayN? Something like Gdx.input.setOnscreenKeyboardVisible(true); in LibGDX. The best I could find is the ...
0
votes
1answer
20 views

Running PlayN in HTML DevMode

I'd like to be able to run my PlayN project as a Web Application in DevMode, so that I can use a quick browser refresh to see code changes without having to recompile. From what I'm reading on the ...
0
votes
0answers
19 views

Efficient toggling between two screens (tripleplay.game.Screen)

In my application I need to switch frequently between two main screens (tripleplay.game.Screen) In order to toggle between the two screens, I always keep one Screen on the tripleplay.game.ScreenStack ...
0
votes
2answers
38 views

Snapshot 1.8 dependecies error on tripleplay examples

i'm trying to run the tripleplay examples in my eclipse (https://github.com/threerings/tripleplay) but it always sows me te same error during installation: Failed to execute goal on project ...
0
votes
0answers
62 views

PlayN HTML Dependencies not updating (Core, Assets)

Whenever I try to run the HTML version of my PlayN project the Core & Assets library don't update. And when it starts it runs the first html build I did. This doesn't happen with the Java version ...
0
votes
1answer
14 views

How to create a new image from a GroupLayer

I added a couple of images into a GroupLayer. Does anyone know how to create an image from that GroupLayer? Thanks.
0
votes
0answers
24 views

Using ClientBundle to load the PlayN images

Could someone explain how PlayN images can be loaded using a ClientBundle ? Thanks in advance
0
votes
0answers
19 views

animate a tripleplay widget that has AbsoluteLayout

Is it possible to animate Elements that are added within an AbsoluteLayout on a game? Basically want to be able to move button in and out of the screen (instead of just showing/hiding them) but ...
-1
votes
1answer
107 views

Google Web toolKit [closed]

I am new to GWT. I want to know whether to use it or not based on answers on these few questions: Can I convert an executable JAR in to Ajax page using GWT? I heard programmer convert Java games ...
0
votes
1answer
260 views

Alternatives to playN

i want to create games for multiple platforms. I want to code my games one against a common API/framework and the framework could compile the game for multiple platforms. I want the game to work as an ...
0
votes
1answer
80 views

No OpenGL context found error in PlayN

Using PlayN, i am trying to change the image on a square layer. I am trying to create a flip effect to change the images. This i am doing by setting the origin of the layer to center of the image, ...
0
votes
1answer
207 views

PlayN 1.6 default maven project deploys but won't run on Android

I'm having trouble with setting up a new PlayN project and running it on Android. The game compiles, install, but it wont run. I've created a new project using mvn archetype:generate ...
0
votes
0answers
48 views

Adding an ImageLayer to a certain location in a GroupLayer does not move the ImageLayer correctly

My application has one GroupLayer. I also have a grid of 4x4 squares. Each square is an individual ImageLayer added to GroupLayer On top of the grid I try to draw a circle to a specific location. The ...
1
vote
1answer
57 views

Garbage collection (GC) in Android PlayN

In Chris Pruett's talk http://www.youtube.com/watch?v=7-62tRHLcHk writing real time games for android, he meticulously avoided the GC from running by never losing a reference or creating a new ...
1
vote
1answer
159 views

PlayN start up?

i'm newbie on the PlayN. I read the article over the googlecode: Getting start I want to start up with Eciplse but according to the tulorial, I found that we need to install maven, but I'm not ...
0
votes
0answers
50 views

PlayN: Auto reload/refresh Java application

I see on this video https://www.youtube.com/watch?feature=player_detailpage&v=F_sbusEUz5w#t=1462s (24:15) that the Java application can be auto reloaded by changing sources. But it doesn't work ...
0
votes
0answers
29 views

Make an existing TriplePlay Screen on the top of a ScreenStack

I have the following ScreenStack: protected final ScreenStack stack = new ScreenStack() { @Override protected void handleError(RuntimeException error) { PlayN.log().warn("Screen ...
1
vote
2answers
438 views

Google playN vs android game engines

I currently developed 4 multiplayer games on Android using andEngine. The problem is the engine is kind of dead(no commit in the past 8 months) and I'd like to start developing in another good ...
1
vote
1answer
42 views

How to change to rootLayer of the playn AndroidPlatform?

All the layers of my game are scaled and positioned for a rootLayer with a ratio 2:1. For example, under the java version I did that : Config config = new Config(); config.width = 800; config.height ...
0
votes
1answer
17 views

Change VECTOR_OUTLINE Color in playn

I am trying to create a label with a black outline in playn with triple play. This code creates a label: new Label("Label").addStyles( Style.COLOR.is(Color.white.getRGB()), ...
0
votes
1answer
39 views

PlayN : add TriplePlay text field to a spefic position

I have a simple background layer: @Override public void wasAdded() { super.wasAdded(); Image bgImage = PlayN.assets().getImage("images/Welcome.png"); ImageLayer bgLayer = ...
1
vote
2answers
85 views

native input text with PlayN

Is there anyway to create an input text that opens the device target's native keyboard ? (from the bottom screen of iOS and Android devices). I tried tripleplay.ui.Field field = new Field(); But ...
3
votes
0answers
156 views

PlayN Tripleplay not working with Android Nexus 7

i have defined the main menus of my game using the Tripleplay framework for PlayN. unfortunately I cannot get it to display on my Nexus 7. What's really strange about this - if i run the Java ...
0
votes
1answer
160 views

PlayN WebGL perfomance for canvas

WebGL is really slow. 100 sprites per frame - ok, 1000 sprites per frame - need optimization, 10000 sprites, fps drop down from 40 to 20fps. I do not need 3D at all. I do not need filters, ...
0
votes
0answers
90 views

Android Bitmap Options

There are a few options for Bitmap loading in the AndroidAssets class, like the setAssetScale() method and the new BitmapOptionsAdjuster. But I cannot find any documentation or sample code related to ...
0
votes
1answer
74 views

How to override GWT-supplied implementation of CanvasElement in PlayN HTMLGraphicsCanvas?

I'm looking to supply my own implementation of CanvasElement class. This class is instantiated in HTMLGraphicsCanvas class in the PlayN stack. What is the ideal way of doing this? There are 2 ways ...
1
vote
1answer
42 views

Runtime resource files with PlayN

Working on a game that would like to allow users to select different character skins using PlayN (targeting Android as first platform). But these character skins will be made available later on (and ...
1
vote
1answer
104 views

Error reading image from scala playn

I researched and looked into the PlayN game framework and I liked it a lot. I program in Scala and actually don't know Java but it's not usually a problem since they work together great. I've set up ...
0
votes
1answer
197 views

PlayN - Bad rendering performance on iOS

We have a game that runs pretty smoothly on Android but the game is unplayably slow on iOS especially on iPhone 4. We have found some candidates what may be delaying the game rendering but still the ...
1
vote
1answer
16 views

Cannot get disableClassMetadata to take effect

I am writing a basic game based on the "Hello" PlayN demo which uses the TriplePlay UI. When running the HTML version I get the runtime exception "Your PlayN application must not be compiled with ...
1
vote
1answer
80 views

PlayN showcase (java) doesn't run - no errors or warnings

I was able to run the sample yesterday, but after attempting to get playn to work with Eclipse it no longer works. It runs normally as HTML5 (mvn -Phtml integration-test). Here's the full output of ...
0
votes
0answers
46 views

add project-html as dependency for project-java in playN

I am trying to use gin and guice in my playN game. I want to have the module definition in one project, and as suggested in this post: How to use Guice bindings in Gin module for PlayN? I defined the ...
2
votes
2answers
218 views

How to set up PlayN size

I've tried : graphics().setSize(800, 600); But it has no effects (at least with java and html). And it seems this method is deprecated. What is the best way to set up the game size ?
1
vote
1answer
283 views

ByteBuffer to String in GWT

On a PlayN project I have the following Java code import com.google.common.base.Charsets; import java.nio.ByteBuffer; ByteBuffer msg = ... // a ByteBuffer that contains a String String s = ...
0
votes
1answer
81 views

“java.lang.UnsupportedOperationException” using Net.WebSocket on android

I'm just trying to connect to my websocket server : ws = net().createWebSocket("ws://192.168.0.3:8000/sample", this); It works fine when I test it with mvn test -Pjava But when I load it with my ...
0
votes
2answers
185 views

can't compile play showcase html

I installed playN however I get this error: [INFO] --- gwt-maven-plugin:2.4.0:compile (default) @ playn-showcase-html --- [ERROR] Error: Could not find or load main class com.google.gwt.dev.Compiler ...
0
votes
1answer
107 views

Playn mvn clean install error "NoClassDefFoundError: playn/core/game

so for a long time now i have been searching the web constantly looking at other peoples problems and fixes hoping they will be reverent to my issue, but i cant seem to find anyone with the same issue ...
0
votes
0answers
17 views

pivot point (for scale or rotation) in flashbang-playn?

I'm wondering how can I to scale / rotate an sceneObject at a particular point instead of the default top-left (0,0) point. Many thanks.
0
votes
0answers
92 views

Falling leaves particle system in PlayN

I'm trying to create a particle system similar to the one from Worms: http://www.youtube.com/watch?v=Gd35RSg187U (the falling gears in the back) I've already tried various emitter settings using ...
0
votes
0answers
116 views

websocket closed immediately , and no 'connection upgrade' request, using PlayN framework

I have been trying to implement PlayN.Net.Websocket functionalities for html & java. I successfully setup my websocket server on aws ec2 using socket.io. I tested that part. When I tried to ...
0
votes
0answers
48 views

PlayN CanvasImage that supports world-space coordinates drawing on native screen resolution

I'd like to have CanvasImage with native screen resolution to which Canvas I can draw using world-space coordinates. I have written this: GroupLayer group_layer = PlayN.graphics().createGroupLayer(); ...
0
votes
0answers
36 views

How can I use a vertical scroller with a wrapped Label in PlayN with tripleplay?

I have been trying to use the new Scroller with a wrapped Label but I can't find a way to change the size of the Scroller so it can scroll. The actual result is a multiline text that does not scroll. ...
2
votes
2answers
179 views

GWT & MVP in order to deliver BOTH Native (Android+ObjC) & HTML5 Mobile Apps?

So GWT best practices encourages one to use some flavour of MVP, which should in theory allow one to write different native views while sharing the presenter business logic. This seems to be at the ...
0
votes
0answers
81 views

PlayN How to attach custom shader

My game FPS (iOS platform) is too low while drawing paths using Canvas strokePath(Path path). I have some experience in writing GLSL shaders and decided to implement similar functionality using ...
0
votes
0answers
65 views

How to redraw screen on mouse click and move?

I have main class: public class MyGame implements Game { private World world; private ImmediateLayer map; private float touchVectorX, touchVectorY; @Override public void init() { ...
0
votes
0answers
34 views

Building PlayN project with custom PlayN git repository

I've followed this tutorial http://code.google.com/p/playn/wiki/CheckoutReviewCommit to checkout PlayN upstream repository. Now I wan't to modify, build and use it in my PlayN game but the tutorial ...
1
vote
1answer
74 views

Embedding PlayN game into Android activity

Is it somehow possible to embed PlayN game view within Android activity with custom layout? I mean any way because, looking at the PlayN code, it apparently is not supported yet. Have anyone tried to ...
0
votes
0answers
83 views

How to properly configure PlayN project?

I am a total newbie with PlayN. I created project and it was compile properly. But I introduced changes: file Dot.java: package com.mydot.dot.core; import static playn.core.PlayN.*; import ...
0
votes
0answers
27 views

Build to jar excute

In tut: http://jameswilliams.be/blog/entry/255 i config java backend pom.xml http://pastebin.com/hE4xCG0E i use maven build in eclipse with goals: clean install i run file jar in target, i get error ...

1 2 3 4 5 6