Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (407)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
   Home   Help   Search   Login   Register   
  Show Posts
Pages: [1] 2 3 ... 84
1  Discussions / General Discussions / Re: Will you betray, Eclipse users? on: 2013-05-19 01:29:46
So we know that Google drops ADT bundle for Android Studio on previous I/O event.
Android Studio is built on JetBrains IDEA which is a pretty good alternative to Eclipse these days.
2  Game Development / Newbie & Debugging Questions / Re: Slick2D applet blank screen + no errors. on: 2013-05-13 01:32:37
1  
2  
3  
4  
5  
6  
public class Game extends BasicGame {
   public Game(String title) {
      super(title);
      // TODO Auto-generated constructor stub
  }
}


When using Slick Applets, the class that extends the BasicGame class can't have parameter(s) in the constructor otherwise Slick is unable to make a new instance of it.

Change 'public Game(String title)' to 'public Game()' and the above error should no longer happen.
3  Games Center / WIP games, tools & toy projects / Re: [WIP] Daedalus on: 2013-05-10 17:34:34
Thanks, for sure I'm quite happy to have been persistant enough on this project to be able to at least try to be published on steam Smiley Being published on steam would be really amazing, but seeing the votes after two days on greenlight I think it will be really hard ...
Keep the updates coming, video's, cool effects, etc, this gives us something to tweet/post about the game and so keeps it in the public eye. Your last update was probably seen by a few thousand ppl on twitter.
4  Game Development / Performance Tuning / Re: Using software rendering instead of GPU rendering? on: 2013-05-07 00:01:10
Shouldn't be a problem on todays CPU's, however seems a bit of a waste for the GPU to just sit there when you can offload work to it and free up the CPU for other tasks.
5  Games Center / WIP games, tools & toy projects / Re: [WIP] Daedalus on: 2013-05-06 14:03:48
Cool, really nice work on getting to a point where you can showcase it on Steam Greenlight. Looks really nice.
6  Game Development / Newbie & Debugging Questions / Re: New to LWJGL- Where to start? on: 2013-05-01 12:57:05
A list of resources to Learn LWJGL can be found here.
7  Discussions / General Discussions / Re: Xbox 720 - IllumiRoom, we'll be stacked in our living room for ever on: 2013-04-30 14:57:27
Nice idea, however the style of projector (excluding the room sensor) used in that video usually costs 2 - 4 times the amount current gen console sell for. So unless Microsoft have found a really cheap way to manufacture them (don't forget the cost of the actual console), it just looks like an expensive gimmick peripheral.
8  Discussions / General Discussions / Re: Wee, LWJGL 2.9.0 looks to be out soonish! on: 2013-04-16 16:31:04
Work on LWJGL 2.x is now mainly going to be stability fixes and just having it working well (so unlikely to get many new radical features). The 2.9 is mostly just bug fixes, new extensions, updates to OpenAL-Soft and moving the project over to GitHub.

For new features, LWJGL 3.0 is where all the action is now, its a radical rethink/refocus of the API, will have many new features, be more lightweight, faster and fully documented. Its still very early days though and far from ready but work is underway.

Snippet from the LWJGL forums below showing some progress from the current LWJGL3 WIP:

Quote
The screenshot below shows one of the demos in the LWJGL 3.0 repo. It highlights one of the most important features in 3.0: multiple, resizable windows. Each window has its own OpenGL context. Both fractals are being rendered with OpenCL, the first on the GPU and the second on the CPU.


9  Discussions / General Discussions / Re: Wee, LWJGL 2.9.0 looks to be out soonish! on: 2013-04-16 13:38:16
Yup internally it going to be a big release as the the mac backend was completely rewritten but from a user point of view should be just be another release in the LWJGL 2.x series.

Anyway no need to actually wait for the final release, just grab the nightly builds and start hacking away Smiley

As for tutorials have a look at this page.
10  Games Center / Showcase / Re: [Android] MAGNET (Full) on: 2013-04-05 13:30:03
This looks nice but is it Android only atm? any plans for a desktop version?
11  Games Center / Featured Games / Re: Just Tactics - multiplayer turn-based strategy/deckbuilding on: 2013-04-05 12:54:20
This works and plays really nicely.

FEATURED.
12  Game Development / Newbie & Debugging Questions / Re: Loading LWJGL natives on: 2013-04-03 00:06:40
You could also use JarSplice, will wrap your jar and natives into a single shellscript (.sh) for linux, exe for windows and an .app for OS X.
13  Games Center / Featured Games / Re: Heroes of Loot on: 2013-04-02 15:05:35
@kappa:
you use no scoring points again?
The game is highly polished in pretty much all the area's in the scoring system, uses a rather stable framework/library (libgdx), didn't find anything worth criticising or think that adding a score out of 10 would assist much in helping improve the game. Besides users can always add their own comments and reviews (even a score).
14  Games Center / Featured Games / Re: Heroes of Loot (libgdx) on: 2013-04-02 11:25:08
really nice, love the art style.

FEATURED.
15  Java Game APIs & Engines / OpenGL Development / Re: Using LWJGL Applets on: 2013-03-19 13:21:36
Have a read of the Basic LWJGL Applet guide.

Secondly when using LWJGL you also have natives which need to be deployed, a number of different ways to do this, e.g. Deploying with the LWJGL Applet Loader.
16  Games Center / Cube World Projects / Re: Low fps problems with many objects in OpenGL on: 2013-03-18 12:16:27
that is a pretty beefy system so you should get more fps, but yeh one VBO per chunk of blocks is probably the way to go. VBO is only updated if there is some change to the chunk.

Also curious, what type of lighting are you using simple per pixel/vertex spotlight? SSAO? other?
17  Java Game APIs & Engines / Java 2D / Re: Fake 3d effect? on: 2013-03-13 21:46:56
i have to understand...

A game like command and conquer tiberian sun is 2d or 3d?
Tiberian Sun used voxels for its 3d, so the engine is a bit of a hybrid between 2d and 3d.
18  Java Game APIs & Engines / OpenGL Development / Re: [LWJGL] isKeyReleased() method? on: 2013-03-13 21:41:25
Have a read of this tutorial.
19  Game Development / Newbie & Debugging Questions / Re: LWJGL canvas in Swing app - resize problems on: 2013-03-12 17:07:11
have you set the correct glViewport parameters after the resize?
20  Games Center / WIP games, tools & toy projects / Re: Ancient Kemet - Egypt themed MMORPG on: 2013-03-12 16:14:51
kappa beat me to the punch


@heezel do avoid creating multiple threads for the same project/game, did notice you had some extra images in your second thread so copied those over to your original thread so you don't loose your replies.

Anyway really cool looking project, just curious, you using one of the java game engines? or is it mostly written from scratch using something like an opengl binding?
21  Java Game APIs & Engines / OpenGL Development / Re: [LWJGL] Best way to notify user of OpenGL init error on: 2013-03-12 14:53:11
LWJGL's built in method

1  
Sys.alert("Yo dawg", "Yo shit's broke man.") 
22  Discussions / General Discussions / Re: Java on PS4! on: 2013-02-25 15:28:32
That DirectX thing looks like an in-house developed layer made by Paradox on top of LibGCM, not something that is part of the PS4 SDK.
OpenGL on the other hand was part of the standard PS3 toolset (also built on top of LibGCM), so it seems very likely that OpenGL will be on PS4 too.
Nice, LibGCM seems like a pretty cool library, found a nice read here and here.

The OpenGL support on PS3 is just a layer on top of LibGCM, however rumour has it that the PS4 has native OpenGL support. It'd be interesting to know which type of OpenGL (if any) is on PS4, whether its OpenGL ES2 or standard desktop OpenGL (like OpenGL 4.2). Its unlikely that OpenGL ES 2 will cut it for next-gen as there is heavy emphasis of use of things like compute shaders, geometry shaders, etc.
23  Discussions / General Discussions / Re: Java on PS4! on: 2013-02-23 00:31:49
Its definitely in Oracles interest to let Sony have access/licence to Java as Sony's cloud stuff (Gaikai, etc) will require a lot of servers, something I'm sure Oracle will be more than happy to provide. However Sony are already heavily invested in C# (see Playstation Mobile) so not sure what extra benefit they'd get from Java.
24  Discussions / General Discussions / Re: Java on PS4! on: 2013-02-21 12:42:55
Its already confirmed that C# (source & mirror) and DirectX 11 will be on PS4. However not seen any concrete information yet that OpenGL or OpenGL ES will be on PS4.

Technically OpenJDK looks very possible to port onto PS4, probably need to rewrite the OS specific bits though unless the PS4 OS is Linux or Windows NT Kernel (considering the DirectX).

Another thing to keep in mind is that the Gaikai tech (was written in Java on some clients and was Java serverside) will be a big part of PS4, so for all we know they might already have some sort of JVM for it, in addition to the Blu-Ray JVM (Interestingly the Xbox Next will also have a Blu-Ray drive, so also a JVM?).

Speaking of the Xbox Next, rumour has it that it'll use a modified version of Windows 8 and also be x86 based, so OpenJDK on there also shouldn't be impossible, although you'll probably have to have a binding to DirectX for it.
25  Java Game APIs & Engines / Tools Discussion / Re: Spine: 2D skeletal animation on: 2013-01-28 18:20:49
Now we need some stretch goals Smiley
26  Game Development / Newbie & Debugging Questions / Re: Workspace over Dropbox, Eclipse, spotting changes on: 2013-01-18 15:44:23
GIT is a good choice, if you must use Dropbox then its possible to use GIT on top of Dropbox (just Google for instructions), better yet just use a proper service like Github, BitBucket, etc instead of Dropbox.
27  Discussions / General Discussions / Re: Java 7.10 Plugin blocked on Mac on: 2013-01-14 01:08:46
All unsigned applets, that is. I think only Very High causes it to trigger for all applets.

Cas Smiley
On the Very High setting unsigned applets won't run. On High, you will be prompted before any unsigned Java app runs in the browser. If the JRE is below the security baseline, you will be given an option to update. There is already a prompt for signed/self-signed applets, so basically all applets now have a prompt (a double prompt in Chrome).
28  Discussions / General Discussions / Re: Java 7.10 Plugin blocked on Mac on: 2013-01-14 00:53:21
Oracle have released a fix the above exploits, announcement here.

They've also switched the default Java Security Settings Level to High, basically meaning all Java applets will now be click to start (no more drive by Java attacks).

Just painful watching the Java Applet plugin situation slowly moving from bad to obsolete over the years.
29  Java Game APIs & Engines / Tools Discussion / Re: Spine: 2D skeletal animation on: 2013-01-11 14:50:14
This should fix the crashes on older OSes and GPUs which seems was indeed caused by using setOpacity before creating the display. Using setOpacity after creating the display worked without crashing, but the window drawing was corrupt when the window was not opaque. I just ripped out the setOpacity stuff. Special thanks to deathpat for all his testing!
Nice job debugging that, I was also running into the issue on an old computer (ATI Radeon Xpress 200 series), can confirm Spine runs perfectly on there now.
30  Discussions / General Discussions / Re: Adobe giving away photoshop cs2 for free on: 2013-01-10 13:41:51
Oh well, sounded a bit too generous on Adobe's part Smiley

The GIMP and Paint.NET are pretty decent free alternatives these days. The GIMP became a lot more usable since they added the single window mode although I'd say Paint.NET is still a little better.
Pages: [1] 2 3 ... 84
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (89 views)
2013-05-17 21:29:12

alaslipknot (97 views)
2013-05-16 21:24:48

gouessej (128 views)
2013-05-16 00:53:38

gouessej (123 views)
2013-05-16 00:17:58

theagentd (132 views)
2013-05-15 15:01:13

theagentd (120 views)
2013-05-15 15:00:54

StreetDoggy (162 views)
2013-05-14 15:56:26

kutucuk (184 views)
2013-05-12 17:10:36

kutucuk (185 views)
2013-05-12 15:36:09

UnluckyDevil (192 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.758 seconds with 20 queries.