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 (408)
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]
1  Discussions / General Discussions / Re: Oracle effectively disables Java in all browsers? on: 2012-09-04 18:34:54
And JaGeX I'm think trying move from Java. JaGeX writing RuneScape graphics engine that runs on HTML5.
http://www.zybez.net/news/1950/runescape_for_html5/
2  Games Center / WIP games, tools & toy projects / Re: Blue Saga on: 2012-07-12 23:18:02
Absolutely love.

Best of good luck!  Smiley
3  Games Center / WIP games, tools & toy projects / Re: JavaGL : old-school, 100% software, 3D engine on: 2012-07-09 20:49:49
[Off-topic]
I'm think 3D Software Renderer's is good for Web(HTML5 Canvas, JavaScript) because WebGL does't supporting in Microsoft Internet Explorer, but Java( Desktop applications, Applets ) I'm think can use OpenGL and don't need 3D Software Renderer.
[Off-topic]

Good luck with JavaGL, Demos looks good.  Smiley
4  Java Game APIs & Engines / OpenGL Development / Pyramid, Cube in LWJGL on: 2012-07-02 17:01:24
Hello,
I'm new in OpenGL(LWJGL). Now I'm understand how to draw 2D Triangles/Squares(too Points  Shocked), set color to Triangles/Squares, Rotate Triangles/Squares.

But I'm stuck with how to draw real 3D objects(something like Pyramid, Cube). I'm know for pyramid I'm need Front,Back,Left, Right and for Cube need Front, Back, Left, Right, Top, Bottom vertices. I am copy this vertices from NeHe tutorial(http://nehe.gamedev.net/tutorial/3d_shapes/10035/) and all work. But I'm don't understand how to set this vertices from mind. I'm only know how to set vertices for Front and Back, but how to left, right, etc. How all works?

Sorry for stupid question, but I'm don't understand. Maybe is good tutorial for this situation?

Thanks and sorry for my bad English language.

 Smiley
5  Discussions / Miscellaneous Topics / Re: Preferred OS? on: 2012-06-21 19:25:04
What I want in an OS is...

A UI and general feel something like BeOS without all that stupid animation and transparency and compositing, and designed by someone who has a ...

http://haiku-os.org/  Smiley
6  Game Development / Newbie & Debugging Questions / Re: From where best learn Java? on: 2012-04-29 16:24:09
Looking to learn how to program with Java
7  Game Development / Newbie & Debugging Questions / From where best learn Java? on: 2012-04-29 16:04:52
Hello,
Sorry for very stupid question, but... I need learn Java and I found three places where I can learn, but who best? what your recommend and why?

First: http://docs.oracle.com/javase/tutorial/ - Text
Second: http://thenewboston.org/list.php?cat=31 - Video
Third: http://www.mybringback.com/series/java-2/ - Video
8  Discussions / General Discussions / Re: Flash is a plague on: 2012-03-27 18:54:52
http://www.youtube.com/html5
9  Discussions / Business and Project Discussions / Re: runescape private servers - looking for developer on: 2012-03-19 17:51:41
Hmm if you've got enough talent to actually make a Runescape server then why not, you know, make your own game instead?

Cas Smiley

+1  Smiley
10  Discussions / Miscellaneous Topics / Java 8, 9, and 10 roadmap on: 2012-03-19 17:50:05
http://www.theregister.co.uk/2012/03/07/oracle_java_9_10_roadmap/

Discuss?  Smiley
11  Java Game APIs & Engines / OpenGL Development / Re: Best online opengl tutorial on: 2011-11-12 21:18:27
http://www.videotutorialsrock.com/index.php
This OpenGL tutorial's is good?
12  Discussions / Miscellaneous Topics / Re: JavaScript is a scam on: 2011-11-08 16:23:53
EcmaScript/JavaScript harmory get's class-oop - http://wiki.ecmascript.org/doku.php?id=harmony:classes
13  Discussions / General Discussions / Re: Using GWT to go from Java to Java Script on: 2011-10-03 17:54:05
Hi,
It work fine in Google Chrome 14.0.835.187 m
How long take porting Legends Of Yore(Engine/Game)?
14  Game Development / Newbie & Debugging Questions / Isometric map with big objects on: 2011-08-23 16:37:08
Hello,
Maybe anyone have idea how to make Isometric object's bigger than one tile?

Something like I am have:
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
map = [ // Tile map
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0]];
objMap = [ // Object map
[1, 0, 0, 0, 0],
[0, 0, 1, 0, 0],
[0, 0, 1, 0, 0]];

tileImg = 'tile.png';
objImg = 'obj.png';

tileArray = Array(tileImg, ...);
objArray = Array(objImg, ...);

tileW = 16; // Tile width
tileH = 16; // Tile height

function drawMap() {
    for(i = 0; i < map.length; i++) {
        for(var j = map[i].length; j++) {
            drawTile = map[i][j];
            drawObj = objMap[i][j];
            x = (i-j) * tileH;
            y = (i+j) * tileH / 2;
            drawImage(tileArray[drawTile], x, y);
           if(drawObj) {
               drawImage(objArray[drawObj-1], x, y - 16);
           }
        }
    }
}

Sorry for no Java code, but I am think this is easy understand. Smiley

In here can draw isometric tile map with object's. One object only can take one tile, but how to make Object where use 4 tiles or more? Maybe can anyone share idea?

Sorry for my English language and sorry for newbie questions. Thanks!
15  Discussions / Miscellaneous Topics / Web platform or Java for game development? on: 2011-08-01 17:28:13
Hello,
First sorry for my English language. This is not my base language for my country.
But I want to hear the opinion of in what platform better create games eg. after 1 year's?
Web(HTML5, JavaScript, WebGL) or in Java platform? what you think which platform more popular eg. after 1 year?

And now today Web platform(HTML5, JavaScript) have successful Game Engine's(http://www.impactjs.com, http://www.rocketpack.fi, and I think is more Smiley ). Too with JavaScript language can programming in Server-Side with Node.js(http://www.nodejs.org) and sure cross-platform(Windows(Microsoft have plans allow developers create programs with HTML5, JavaScript), Linux, Mac, Android, iOS, ...).

Too I think more easy development in Web platform for new programmers when Java.

What you think?
16  Games Center / WIP games, tools & toy projects / Re: SF Citybuilder- Buildings/Concept Art on: 2011-07-29 13:57:10
Very nice Art!

Which software you draw this? use Graphics tablet?
17  Game Development / Newbie & Debugging Questions / Character movement with Mouse on: 2011-07-23 23:22:39
Hello,
Sorry for newbie question but How to movement Game Character with Mouse?
Something like I am have: mouseX, mouseY, playerX = 0, playerY = 0.
If I am click mouse get cordinates in mouseX and mouseY(Something like now mouseX = 5 and mouseY = 10) and move Character to x 1 and y 3(playerX = 1 and playerY = 3 now)
How to move Game character(wihout Teleport) to mouseX and mouseY cordinates?

Simple code snippets very useful.

Thanks and sorry for my English language.
18  Discussions / Miscellaneous Topics / Re: Soon 100000 posts ( *2 ) on: 2011-05-22 00:39:01
This community is nice! Tongue
19  Discussions / General Discussions / Re: Go on, ask me anything. on: 2011-05-22 00:34:49
Why you don't create your own game engine for all PuppyGames.net games? Im think is better way create engine and create all games with engine when all new games create from zero or no?
20  Games Center / Featured Games / Re: Yet Unnamed Multiplayer Rogue Like on: 2011-05-21 18:32:06
Windows 7
Java "1.6.0_25"
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
org.lwjgl.LWJGLException: Could not create context
   at org.lwjgl.opengl.WindowsContextImplementation.nCreate(Native Method)
   at org.lwjgl.opengl.WindowsContextImplementation.create(WindowsContextImplementation.java:50)
   at org.lwjgl.opengl.Context.<init>(Context.java:131)
   at org.lwjgl.opengl.Display.create(Display.java:859)
   at org.lwjgl.opengl.Display.create(Display.java:785)
   at org.lwjgl.opengl.Display.create(Display.java:766)
   at platspecific.AppletM$1.run(AppletM.java:97)
initgl
Exception in thread "Thread-14" java.lang.NullPointerException
   at org.lwjgl.opengl.GL11.glEnable(GL11.java:1001)
   at platspecific.AppletM.initGL(AppletM.java:161)
   at platspecific.AppletM.rungame(AppletM.java:298)
   at platspecific.AppletM$1.run(AppletM.java:110)

21  Discussions / General Discussions / Re: Go on, ask me anything. on: 2011-04-19 18:11:19
Do you play game's? (not indie) what genre games you like?
22  Discussions / General Discussions / Re: Go on, ask me anything. on: 2011-03-31 17:45:52
Do you use only a Windows Operating System or too use other(Linux, Mac OS X)? Why use this Operating System?
Pages: [1]
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

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 (126 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (225 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.237 seconds with 21 queries.