Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Quake First Person Shooters (Games) Java Programming Entertainment Games

Quake2 Ported to Java, Play Via the Web 326

casemon writes "Quake2 fans unite! Thanks to German software developer ByTonic software, you can now play Quake2 via the web with Jake2 a java port of ID Softwares seminal Quake2. ByTonic claims performance is similar to original C version. From the Jake2 website; "Jake2 is a Java 3D game engine. It is a port of the GPL'd Quake2 game engine from idSoftware. To use the Jake2 engine you need either the data files from the original game or from the demo version available for download from ftp://ftp.idsoftware.com." You actually don't need to get the data files, they've set it up to automatically download the 38Mb demo assets using WebStart. Just click the Play Now button and away you go. Most features supported, even multiplayer server!"
This discussion has been archived. No new comments can be posted.

Quake2 Ported to Java, Play Via the Web

Comments Filter:
  • Erm, link: (Score:5, Informative)

    by medgooroo ( 884060 ) on Monday November 28, 2005 @08:48AM (#14127851)
    http://www.bytonic.de/html/jake2.html [bytonic.de] just thought it might be, you know, handy?
  • Works pretty well (Score:5, Informative)

    by Anonymous Coward on Monday November 28, 2005 @08:52AM (#14127865)
    I saw it at swing sightings. I tried it with the original game files and didn't notice any difference in speed with the original binaries.
    And this with a not so fast computer: PIII 800, TNT 2, 384 MB RAM.
    Anyway if you wanna see benchmarks with older computers look at their web.
  • Re:Erm, link: (Score:3, Informative)

    by bpatinifurtado ( 934367 ) on Monday November 28, 2005 @09:06AM (#14127941) Homepage
    It is awesome what they have did!

    I have a real good computer (memory, processor and video card) but I must tell you, the game runs really fast, you dont have the feeling of running a java application with all those 3 dimensional objects flying around you. You cant tell thats a program being interpreted.

    Great job folks! The Java community has only to earn with this proof of concepts works :)

    I have been there [livejournal.com]
  • by Anonymous Coward on Monday November 28, 2005 @09:17AM (#14128017)
    Oh you mean like SDL?
    http://sourceforge.net/projects/sdljava/ [sourceforge.net]
  • works on a mac (Score:2, Informative)

    by Anonymous Coward on Monday November 28, 2005 @09:18AM (#14128026)
    Runs great on my 1.2 GHz G4 with 640 MB of RAM in OS X 10.4.3. Running the web start version downloads a file which starts up as a separate java program.

    This is the coolest use of Java I've ever seen.
  • dupe (Score:2, Informative)

    by tduff ( 904905 ) on Monday November 28, 2005 @09:24AM (#14128065)
    dupe [slashdot.org]
  • Re:Erm, link: (Score:4, Informative)

    by The Other White Boy ( 626206 ) <theotherwhiteboy&gmail,com> on Monday November 28, 2005 @09:25AM (#14128073)
    it has mirrors in the dropdown, i'm getting 120k/s from the german one.
  • by steevc ( 54110 ) on Monday November 28, 2005 @09:31AM (#14128110) Homepage Journal
    Check out the benchmarks [bytonic.de]. Similar frame rates to the C version on the same hardware.

    I've not tried it myself yet. Might get in trouble at work.
  • by realinvalidname ( 529939 ) on Monday November 28, 2005 @09:38AM (#14128150) Homepage

    Java already has an OpenGL interface (presumably what this is using). I don't know what this guy is using for sound (although the Java Media Framework might work), or input, but presumably all of the pieces are already there.

    Yes, probably JOGL [java.net] for the OpenGL. For sound, core Java can handle raw PCM, and JOAL [java.net] (Java Bindings for OpenAL) can sit on top of that. Java Media Framework is useless and effectively dead. Input can be handled by JInput [java.net].

  • Performance myth. (Score:3, Informative)

    by adolfojp ( 730818 ) on Monday November 28, 2005 @09:44AM (#14128188)
    Jvm apps can be faster than their compiled counterparts, specially when compared to those made with non specialized compilers like GCC. The "virtual machine = slow" myth is no longer true.

    The real issue is startup time and initial memory consumption. Java is not suitable for applets that run in the background because your basic app will require about 20 megs of RAM minimum to start. Another issue is swing. You can disagree with me, but please wake me up when it gets clear type fonts on windows.

    Cheers,
    Adolfo
  • Re:Erm, link: (Score:2, Informative)

    by gcauthon ( 714964 ) * on Monday November 28, 2005 @11:02AM (#14128839)
    Java programs don't get interpreted on modern VMs, they get JITed

    Question, how does the Java program get "JITed" without getting intepreted first? Does the VM use ESP to read the mind of whoever wrote the program?

    This argument is so old and ridiculous. The only benefit of JIT is that it prevents having to reinterpret the same piece of code over and over if it's executing a loop or procedure multiple times. JIT just makes Java an efficient intepreter rather than a crappy one (which it used to be).

  • by Anonymous Coward on Monday November 28, 2005 @11:09AM (#14128919)
    Mustang (Java 6) which is under Open development (not quite open source license) already has wider support for clear type than Microsoft... So you are right its a bit late but people have invested work into that.
    Swing is not slow or bloated, it just can't be compared to the native OS size since it duplicates its functionality so its memory usage seems high in the task manager. Startup time and cold start is improving with every release and building serious client side Java applications is becoming a very real option.
  • by locnar42 ( 591631 ) on Monday November 28, 2005 @11:29AM (#14129158) Homepage
    Having picked up Java after using C/C++ for about 10 years, I find the biggest irratation to be the speed (or lack of) that programs run. The language itself is great. The UI is usually the worst part. I highly recommend checking out SWT from Eclipse [eclipse.org]. I think a lot of the hardcore Java freaks don't like it because it's not true Java and goes direct to the OS, but it can produce a great UI that isn't painful to use.

    In theory, the JIT should be able to produce code that runs as fast or faster than C/C++. The JIT compiler has much more knowledge of the execution environment (CPU, memory, graphics) and should be able to optimize the program exactly for this one computer. It has't happened yet though. I'm waiting for it though because Java 5.0 is a fantastic language and I would love to drop C++ for it.

    Right now, SWT is the only thing I've found that makes Java UIs bearable for the majority of programs. There are always exceptions to the rule and I'm sure there are some applications where the developers have been able to get decent speed with Java, but the typical C++ program has a considerably more responsive UI than the equivalent Java program when written by programmers of similar talent.

  • by Anonymous Coward on Monday November 28, 2005 @01:23PM (#14130215)
    The benchmarks [bytonic.de] clearly show that the java version is as fast as the original C version.
  • by GileadGreene ( 539584 ) on Monday November 28, 2005 @02:42PM (#14130954) Homepage
    Rather than railing against the Java-haters, why not point out some useful, slick, fast Java-based applications?

    I've had a pretty good experience with jEdit [jedit.org], a Java-based programmer's editor on both Linux and OS X. It's mostly replaced emacs for me now. Although I've only tinkered with Eclipse so far, it's been pretty responsive for everything I've tried. On the Mac, NeoOffice/J (the OS X port of OpenOffice.org, which relies on Java for access to the Cocoa API) seesm to run pretty well. Granted, these are all editing apps, but they're all produced by different dev teams, and all seem to work well.

  • Re:Erm, link: (Score:2, Informative)

    by Pxtl ( 151020 ) on Monday November 28, 2005 @03:28PM (#14131429) Homepage
    While in general JIT does bring a lot to the table, Java drags it back down with a lot of things - the garbage collector, the over-specified floating-point accuracy, array-bounds-checking, and any number of overheads that come from Java's security/stability-before-speed design.

    But then, my knowledge of Java is dated. Has there been new ground broken in the environment to let coders rip off the training wheels?

Living on Earth may be expensive, but it includes an annual free trip around the Sun.

Working...