Difference between revisions of "Java"

From RogueBasin
Jump to navigation Jump to search
(updates and spelling error fixes)
Line 1: Line 1:
== Background ==
== Background ==
Java is a reflective, object-oriented programming language initially developed by James Gosling and colleagues at Sun Microsystems in 1991, as part of the Green Project. It was initially called Oak, and was intended to replace [[Cpp|C++]], although its feature set resembles more that of [[Objective-C]].  
Java is a reflective, object-oriented programming language initially developed by James Gosling and colleagues at Sun Microsystems in 1991, as part of the Green Project. It was initially called Oak, and was intended to replace [[Cpp|C++]], although its feature set resembles more that of [[Objective-C]]. Sun Microsystems is currently owned by the Oracle Corporation, which maintains and regularly updates the java platform.


Java should not be confused with [[Javascript]], a script language with which it shares only the name and a similar [[C]]-like syntax. Sun Microsystems currently maintains and updates Java regularly.
Java should not be confused with [[Javascript]], a script language with which it shares only the name and a similar [[C]]-like syntax. The Java Runtime Environment (JRE) does contain a javascript interpreter, however, based on Mozilla Rhino.


Specifications of the Java language, the JVM (Java Virtual Machine) and the Java API are community-maintained through the Sun-managed Java Community Process.  
Specifications of the Java language, the JVM (Java Virtual Machine) and the Java API are community-maintained through the Sun-managed Java Community Process.  
Line 21: Line 21:
* Ability to run on a web page as an Applet.
* Ability to run on a web page as an Applet.
* Generally easier to learn and use than other high-level languages like C and C++.
* Generally easier to learn and use than other high-level languages like C and C++.
* Serialization to files makes easier to implement and mantain game save and load.
* Serialization to files makes it easier to implement and maintain game save and load.
* For developers of tiled roguelikes the AWT and Swing libraries provide an excellent alternative to the 3rd party (or native platform) graphics libraries used in C and C++.
* For developers of tiled roguelikes the AWT and Swing libraries provide an excellent alternative to the 3rd party (or native platform) graphics libraries used in C and C++.


Line 30: Line 30:
*** Existing libraries([[JCurses]], [[Charva]] or [[libjcsi]])
*** Existing libraries([[JCurses]], [[Charva]] or [[libjcsi]])
*** Develop a new library  (e.g. wrapping the [[Curses]] C library and native methods)
*** Develop a new library  (e.g. wrapping the [[Curses]] C library and native methods)
** Emulate console output in plataform independant AWT or Swing components.
** Emulate console output in platform independent AWT or Swing components.
* Longer initial program startup time. Java has no issues with speed once running [http://www.idiom.com/~zilla/Computer/javaCbenchmark.html], especially for RL games.
* Longer initial program startup time. Java has no issues with speed once running [http://www.idiom.com/~zilla/Computer/javaCbenchmark.html], especially for RL games.
* No executables, dependency on Java Runtime Environment
* No executables, dependency on Java Runtime Environment

Revision as of 13:08, 24 September 2011

Background

Java is a reflective, object-oriented programming language initially developed by James Gosling and colleagues at Sun Microsystems in 1991, as part of the Green Project. It was initially called Oak, and was intended to replace C++, although its feature set resembles more that of Objective-C. Sun Microsystems is currently owned by the Oracle Corporation, which maintains and regularly updates the java platform.

Java should not be confused with Javascript, a script language with which it shares only the name and a similar C-like syntax. The Java Runtime Environment (JRE) does contain a javascript interpreter, however, based on Mozilla Rhino.

Specifications of the Java language, the JVM (Java Virtual Machine) and the Java API are community-maintained through the Sun-managed Java Community Process.

After first being made public in 1994, it achieved prominence following the announcement at 1995's SunWorld that Netscape would be including support for it in their next version of the Navigator browser.

Language characteristics

  • Object orientation
  • Platform independence
  • Automatic garbage collection

Roguelike Development

Pros Java has excellent features for roguelike development:

  • Object orientation.
  • Platform independence.
  • Ability to run on a web page as an Applet.
  • Generally easier to learn and use than other high-level languages like C and C++.
  • Serialization to files makes it easier to implement and maintain game save and load.
  • For developers of tiled roguelikes the AWT and Swing libraries provide an excellent alternative to the 3rd party (or native platform) graphics libraries used in C and C++.

Cons However, it still has some disadvantages:

  • No native console support. Developers of ASCII roguelikes must decide whether to
    • Use the JNI for traditional curses implmentation(Java Curses Implementation)
    • Emulate console output in platform independent AWT or Swing components.
  • Longer initial program startup time. Java has no issues with speed once running [1], especially for RL games.
  • No executables, dependency on Java Runtime Environment

Java Roguelikes

The features of Java have led many roguelikes to adopt this language:

Related links