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 (406)
games submitted by our members
Games in WIP (290)
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  Game Development / Artificial Intelligence / Re: AI Scripting for Players? on: 2010-02-06 13:01:09
What's the best strategy to create AI scripting for players? Use an existing language? Which one? Or roll my own?
hi! I don't know if someone already told you, but if JavaScript is ok for your purposes you can use Java Scripting technologies: http://java.sun.com/javase/6/docs/technotes/guides/scripting/index.html

I'm making a game that uses it.

code example:
1  
2  
3  
4  
String scriptCode = ... ; // contains JavaScript code
ScriptEngine scriptEngine = new ScriptEngineManager().getEngineByName("JavaScript");
scriptEngine.put("out", System.out);
scriptEngine.eval(scriptCode)


script example:
1  
out.println("Hello, world!");


very easy Smiley
2  Game Development / Newbie & Debugging Questions / Re: Saved games on Windows 7 on: 2009-12-21 18:11:51
http://en.wikipedia.org/wiki/Special_Folders seems to indicate that non-English versions have different names for all the folders.  It says something about this in the header above the table of special folders.  It doesn't explicitly say that all the folders have different names, but it seems like it would.
correct: never use hard-coded paths because well-known paths change from one version of the operating system to another and they are internationalized as well; moreover, on Windows Vista and 7 well-known paths can be redirected to other directories.
when doing Win32 programming you should use the proper API functions to retrieve the actual paths, in Java you can use system properties such as "user.home"; you can also use environment variables hard-coded in your paths, but this wouldn't be system-portable (environment variable names are different on Linux, for instance).
3  Games Center / Archived Projects / Re: Super Tetris on: 2009-12-21 17:58:21
Very funny Smiley
Why not deploy it with Java Web Start?
Pages: [1]
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Get high quality music tracks 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 (61 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (175 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.076 seconds with 21 queries.