Sunday, November 13, 2005

An anonymous reader writes "IBM developerworks is running an article that describes the Mobile 3D Graphics API and introduces you to 3D programming for Java mobile devices. Sony's PSP has shown the graphics power you can put into a mobile device and mobile gaming. Although the average mobile phone is technologically behind this specialized game machine, Java seems to be helping to drive the market in a very definite direction."Ads_xl=0;Ads_yl=0;Ads_xp='';Ads_yp='';Ads_xp1='';Ads_yp1='';Ads_par='';Ads_cnturl='';Ads_prf='page=article';Ads_channels='RON_P6_IMU';Ads_wrd='java,developers';Ads_kid=0;Ads_bid=0;Ads_sec=0; A Look at Java 3D Programming for Mobile Devices Log in/Create an Account | Top | 176 comments | Search Discussion Display Options Threshold: -1: 176 comments 0: 173 comments 1: 141 comments 2: 104 comments 3: 28 comments 4: 18 comments 5: 6 comments Flat Nested No Comments Threaded Oldest First Newest First Highest Scores First Oldest First (Ignore Threads) Newest First (Ignore Threads) The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way. Hello World (Score:4, Funny) by deltalimasierralima (922001) on Wednesday October 12, @08:05AM (#13772203) Wow! Finally I can code 'Hello World' in full 3D glory with realistic 3D shadows! [ Reply to ThisRe:Hello World by linumax (Score:1) Wednesday October 12, @08:43AM Re:Hello World (Score:5, Insightful) by Jekler (626699) on Wednesday October 12, @09:41AM (#13772699) It's a common myth that Java is slow. Modernly, Java applications are (on average) only 10% slower than an equivilant C++ application. With appropriate optimization, that margin is even smaller. Even then, when it comes to 3D rendering, the application is usually running at the speed of the hardware, with the Java code not really even coming into play. In a 3D environment you could say the performance margin can be less than 1% difference. [ Reply to This | ParentRe:Hello World by Anonymous Coward (Score:1) Wednesday October 12, @10:57AMOnly for JIT VMs by Viol8 (Score:2) Wednesday October 12, @11:38AMRe:Only for JIT VMs by Dan Farina (Score:2) Wednesday October 12, @11:53AMRe:Only for JIT VMs by Hal_Porter (Score:2) Wednesday October 12, @06:46PMRe:Hello World by flithm (Score:3) Wednesday October 12, @12:01PM Re:Hello World (Score:5, Insightful) by Jekler (626699) on Wednesday October 12, @12:45PM (#13774409) I'm far from a Java zealot. I'm a programmer, language is an insignificant issue. The fact is, I've done most of my programming in C++. I avoided Java for precisely the reason that I thought it was much slower, and as it turned out a lot of my assumptions were wrong. It's even fast enough for 3d games, like Megacorps Online http://www.megacorpsonline.com/game/ [megacorpsonline.com] I know how to use plenty of languages, I learn new ones all the time. I wasn't just guessing the execution speed of Java, I was speaking from experience. As for the test code you use to show Java is slower, that's a huge mistake. You've composed a test which is ideal for C++ to execute. That's like proving a jeep is faster than a porche by doing time trials in offroad terrain. Given a more abstract problem than "Go through these loops a billion times", the solution in Java wouldn't even resemble the equivilant solution in C++. You can't approach the same problem identically in both languages, if you do, you're not writing Java code, you're writing C++ code in Java. There's a lot of utility code that would be necessary in a C++ program that's not necessary to perform the equivilant task in Java. Each language isn't just different syntax, you need an entirely different way of thinking. Trying to port a solution line for line into a different language is senseless. [ Reply to This | ParentRe:Hello World by jmacleod9975 (Score:1) Wednesday October 12, @01:45PM Re:Hello World (Score:4, Insightful) by Jekler (626699) on Wednesday October 12, @03:05PM (#13775638) I apologize, what I said could be wrong. The test may not be more suited to C++ than Java. Truthfully, a short test like that could favor either language or neither. It's too small of a test to be a significant benchmark of a language. If you could test the performance capabilities of an entire language with half a dozen lines of code, no one would ever create an entirely new language until they found a way to execute 4 lines of code faster. The test given doesn't bring into a single feature that's unique to any language. It tests the execution speed of a loop and the increment/decrement of primitive types which is likely to be equally fast/slow in any language as it just comes down to the processor speed. To test Java as a language, a good start would be testing the creation of objects, allocating and deallocating arbitrary amounts of memory, and calling random methods on randomly sized objects. Objects and memory management is where Java shines. Many tests that compare Java's speed to C++ speed tend to focus on areas where C++ shines and Java performs poorly, like resizing containers. One reason Java really shines with objects is that Java doesn't run into the performance overhead incurred by copy constructors. There are a lot of situations in which Java will perform more slowly than C++. There are also situations where Java performs better. The end result is that Java's performance and C++'s performance can't be compared based on a single test. Many people craft a single test and based on the results of one test they brazely declare that Java is always slower. If, one day, it was 100 degrees in NYC, and 90 degrees in Las Vegas, one wouldn't say it's always hotter in NYC. By the same token, you can't compare language performances with a single test. The only real way to compare the performance of two languages is to actually spec a real-world program and have two teams go about building it in different languages. [ Reply to This | ParentRe:Hello World by gral (Score:1) Wednesday October 12, @05:16PMRe:Hello World by kaffiene (Score:2) Wednesday October 12, @06:25PMRe:Hello World by Profound (Score:2) Wednesday October 12, @11:20PMRe:Hello World by Profound (Score:2) Wednesday October 12, @11:48PMRe:Hello World by flithm (Score:2) Wednesday October 12, @02:17PMRe:Hello World by kaffiene (Score:2) Wednesday October 12, @06:29PM2 replies beneath your current threshold.Re:Hello World by Anonymous Coward (Score:2) Wednesday October 12, @12:46PMSad benchmarks by can56 (Score:1) Wednesday October 12, @07:40PMRe:Hello World by da (Score:1) Wednesday October 12, @03:15PMRe:Hello World by kaffiene (Score:2) Wednesday October 12, @06:35PM2 replies beneath your current threshold.Re:Hello World by kaffiene (Score:2) Wednesday October 12, @05:05PMRe:Hello World by flithm (Score:2) Wednesday October 12, @05:22PMRe:Hello World by kaffiene (Score:2) Wednesday October 12, @06:22PMRe:Hello World by kaffiene (Score:2) Wednesday October 12, @06:38PMRe:Hello World by jericho4.0 (Score:2) Thursday October 13, @12:44AM4 replies beneath your current threshold.Re:Hello World by iotaborg (Score:1) Wednesday October 12, @07:56PMRe:Hello World by Profound (Score:2) Wednesday October 12, @11:42PMRe:Hello World by jericho4.0 (Score:2) Thursday October 13, @12:29AMRe:Hello World by PierceLabs (Score:2) Wednesday October 12, @01:14PM1 reply beneath your current threshold.Re:Hello World by Jekler (Score:2) Wednesday October 12, @01:19PMRe:Hello World by Jekler (Score:2) Wednesday October 12, @02:36PMRe:Hello World by jericho4.0 (Score:2) Thursday October 13, @12:44AM1 reply beneath your current threshold.1 reply beneath your current threshold.1 reply beneath your current threshold. Sony Ericsson phones (Score:5, Informative) by wertarbyte (811674) on Wednesday October 12, @08:09AM (#13772213) (http://localhost.ruhr.de/~stefan/) The developer pages of SE offer Mobile Java 3D Tutorials as well: http://developer.sonyericsson.com/site/global/tech support/tipstrickscode/mobilejava3d/p_mobilejava3d _tips_new.jsp [sonyericsson.com] [ Reply to ThisRe:Sony Ericsson phones by oever (Score:1) Wednesday October 12, @11:50AM 3D Handsets (Score:5, Interesting) by seanellis (302682) on Wednesday October 12, @08:10AM (#13772218) Quite a few handsets already support M3G, among them the Siemens S65, Motorola E680, E1000, V980, SonyEricsson V800 and K750i, and the Nokia 6630 and 6680.M3G is a lot lighter weight than Java3D, has high and low level APIs, and has its own compact file format for efficient packaging of assets.I've been developing M3G technology, both engines and games, since day 1 (I was our company's representative on the expert group), and I am happy that Slashdot has at last highlighted it.If you think retreads of "Mr. Do" and "Snake" are going to cut it in the Java space from now on, think again. You might like to look at Superscape's site [superscape.com] for a taste of the kind of 3D games that are already out there.Developers might also want to visit Benhui.net's 3D Developer Forum [benhui.net]. [ Reply to ThisRe:3D Handsets by Agret (Score:3) Wednesday October 12, @08:28AM Re:3D Handsets (Score:4, Insightful) by seanellis (302682) on Wednesday October 12, @08:59AM (#13772436) The comparison with the PSP was in the original link, not my post. These are very different games on very different platforms.On the one hand, we have the PSP - an ultra-slick, hardware-accelerated, single-purpose device which is excellent at playing action games.On the other, we have almost-ubiquitous Java handsets (here in Europe, anyway), with enough processing power to run simplified versions of the console games. That is a niche begging to be filled.The hardcore g4merz will have a PSP. And probably a GBA, a GBM and an Atari Lynx just in case. Everyone else will have a cellphone. They are very different markets and will have very different expectations and different needs. [ Reply to This | ParentRe:3D Handsets by mwvdlee (Score:2) Wednesday October 12, @08:32AMRe:3D Handsets by dreamchaser (Score:2) Wednesday October 12, @08:39AMRe:3D Handsets by somersault (Score:1) Wednesday October 12, @09:08AMRe:3D Handsets by glesga_kiss (Score:2) Wednesday October 12, @09:52AMRe:3D Handsets by somersault (Score:1) Wednesday October 12, @10:01AMRe:3D Handsets by glesga_kiss (Score:2) Wednesday October 12, @10:13AMRe:3D Handsets by somersault (Score:1) Wednesday October 12, @10:20AMRe:3D Handsets by glesga_kiss (Score:2) Wednesday October 12, @10:14PM Re:3D Handsets (Score:5, Interesting) by mwvdlee (775178) on Wednesday October 12, @09:08AM (#13772488) Yes, I know most gamers have mobile phones.Did you also realize that practically the rest of the civilized world also has mobile phones?Gamers are but a small percentage of the mobile phone users.Especially when using "gamer" in the popular interpretation as one who primarily plays games in the popular (racing, FPS and sports) genres.I consider a fanatical phone user, a person who will frequently use SMS, MMS, WAP, built-in cam, built-in MP3 and in general know more than the manual does about the phone. By definition, these are people who are more "on-the-road" than a typical gamer and thus less likely to be a gamer. Apparently conventional popular game genres did not attract them enough to shift from being a hardcore phone user to becomming gamers. Logically, this means that such games would not attract them on their mobile phones either.Perhaps you should refrain from smoking anything for a while, might help you to actually understand what you're reading. ;) [ Reply to This | Parent1 reply beneath your current threshold.Re:3D Handsets by Tim Browse (Score:2) Wednesday October 12, @08:57AM1 reply beneath your current threshold.On a phone screen even Mr Do looks crap by Viol8 (Score:2) Wednesday October 12, @11:48AM1 reply beneath your current threshold. A very definite direction (Score:1) by dajobi (915753) on Wednesday October 12, @08:12AM (#13772224) Yeah the direction of crummy little Java games - now in crummy 3D! [ Reply to ThisRe:A very definite direction by @madeus (Score:3) Wednesday October 12, @08:46AM Re:A very definite direction (Score:4, Insightful) by LarsWestergren (9033) on Wednesday October 12, @09:00AM (#13772440) (http://www.smirkingchimp.com/) Java is in no way driving 3D games development - on mobile platforms or otherwise, this is just a bizarre article. They don't have to "drive" 3D games development, they just have to be fun enough that people with mobile phones want to play them.There are currently zero mobile Java games available that compare even remotely favourably to a decent GBA title, let alone with any titles available on the DS or PSP.Oh, I agree DS or PSP games are more fun, it would be strange otherwise since they are dedicated gaming machines. Thing is, there are many millions more mobile phones sold. Not all people are hardcore gamers who are willing to pay for one of those devices. Some just want a few minutes of diversion while on the bus. A Sudoku puzzle or similar. And this article shows that these games are getting better and better.Typically, the frame rates are awful, the interfaces are not responsive, the sound is often out of sync and of poor quality (as are the often tiny sprites).That is just FUD. I have played plenty of fun and responsive Java games. Still, it must be said that more developers should focus on making addictive puzzle games or similar rather than action games. As you point out, the processor, the screen and the input possibilities are by necessity rather limited. [ Reply to This | ParentRe:A very definite direction by @madeus (Score:2) Wednesday October 12, @12:18PM1 reply beneath your current threshold. Just reminds me (Score:4, Insightful) by olddotter (638430) on Wednesday October 12, @08:14AM (#13772232) (http://poorbenjamin.blogspot.com/) I have a freind who used to work at a major cell phone company. I remember him telling me people would NEVER use java or linux in embedded products because the memory foot print was just too big.Ah, Moore's Law, what isn't practical today will be in 18 months (or 36 months, etc.).He is a smart guy, he just doesn't have the vision to look out that far into the future. [ Reply to ThisRe:Just reminds me by pureseth (Score:1) Wednesday October 12, @08:23AMRe:Just reminds me by seanellis (Score:2) Wednesday October 12, @08:49AMRe:Just reminds me by seanellis (Score:2) Wednesday October 12, @08:52AMRe:Just reminds me by IamTheRealMike (Score:3) Wednesday October 12, @08:53AM Re:Just reminds me (Score:4, Insightful) by LarsWestergren (9033) on Wednesday October 12, @09:10AM (#13772496) (http://www.smirkingchimp.com/) Motorola now use the "JUIX" operating system which is a combination of Linux and Java so while he was definitely wrong, his mistake was simple enough - assuming that technological superiority would win out over mass-market/buzzword appeal.Ease of development, maintainability and porting are also forms of technological superiority, and in this case perhaps more important than pure performance? [ Reply to This | ParentRe:Just reminds me by IamTheRealMike (Score:2) Wednesday October 12, @10:08AMRe:Just reminds me by Taladar (Score:2) Wednesday October 12, @10:46AM1 reply beneath your current threshold.Opensource 3D on every phone ? possible (*caugh* ) by rzr (Score:2) Wednesday October 12, @09:15AM Re:Just reminds me (Score:4, Insightful) by Bogtha (906264) on Wednesday October 12, @09:28AM (#13772618) I remember him telling me people would NEVER use java or linux in embedded products because the memory foot print was just too big.Java was designed for embedded products. [wikipedia.org] He is a smart guy, he just doesn't have the vision to look out that far into the future. Or the past, apparently. [ Reply to This | Parent1 reply beneath your current threshold. 3D programming and multiple screens on my sony (Score:3, Interesting) by jurt1235 (834677) on Wednesday October 12, @08:21AM (#13772254) (http://www.hipersonik.com/) So will I see the frontside of the object on one screen, and when I turn the phone around to watch the other screen, the back side of the object? That would be pretty cool! [ Reply to ThisRe:3D programming and multiple screens on my sony by jurt1235 (Score:1) Wednesday October 12, @09:15AM1 reply beneath your current threshold. Bad Idea! (Score:4, Insightful) by Agret (752467) <<moc.liamg> <ta> <7902orez.saila>> on Wednesday October 12, @08:22AM (#13772256) (http://agret.blogspot.com/ | Last Journal: Thursday September 29, @11:59PM) 3D Java Games? Anyone re-call the N-Gage?This seems like a bad idea to me. Instead of trying to make a phone compete with a gaming console they should be looking for more innovate things that they can make phones do. [ Reply to ThisRe:Bad Idea! by seanellis (Score:2) Wednesday October 12, @08:42AMRe:Bad Idea! by biraneto2 (Score:1) Wednesday October 12, @09:34AMRe:Bad Idea! by Rycross (Score:2) Wednesday October 12, @11:20AMRe:Bad Idea! by Jedi Alec (Score:1) Wednesday October 12, @01:58PM How much would a phone.. (Score:5, Insightful) by CyricZ (887944) on Wednesday October 12, @08:22AM (#13772257) How much would it cost these days for a phone that did not have any unnecessities like 3D graphics, address books, calendars, clocks, and so forth? I'm talking about a cell phone equivalent feature-wise to your typical 1960s telephone. How terribly cheap could something like that be produced for? I'd almost be inclined to think that you could find them in vending machines. [ Reply to ThisRe:How much would a phone.. by eneville (Score:3) Wednesday October 12, @08:26AMRe:How much would a phone.. by seanellis (Score:2) Wednesday October 12, @08:32AMRe:How much would a phone.. by Da Fokka (Score:2) Wednesday October 12, @08:33AMRe:How much would a phone.. by Anonymous Coward (Score:1) Wednesday October 12, @09:34AMRe:How much would a phone.. by Otter (Score:2) Wednesday October 12, @08:55AMRe:How much would a phone.. by torpor (Score:1) Wednesday October 12, @08:56AMRe:How much would a phone.. by shadow_slicer (Score:2) Wednesday October 12, @08:58AMcost about the same ... by hany (Score:2) Wednesday October 12, @05:43PMRe:How much would a phone.. by IamTheRealMike (Score:2) Wednesday October 12, @09:05AMRe:How much would a phone.. by chrismcdirty (Score:2) Wednesday October 12, @09:05AMRe:How much would a phone.. by LS (Score:2) Wednesday October 12, @09:38AMRe:How much would a phone.. by Tryfen (Score:3) Wednesday October 12, @09:59AMRe:How much would a phone.. by pipacs (Score:1) Wednesday October 12, @12:29PMRe:How much would a phone.. by cerelib (Score:1) Wednesday October 12, @10:05AMRe:How much would a phone.. by LnxAddct (Score:1) Wednesday October 12, @10:11AMRe:How much would a phone.. by badfish99 (Score:2) Wednesday October 12, @09:09AM1 reply beneath your current threshold. And queue the Java-being-slow comments... (Score:4, Insightful) by MaestroSartori (146297) on Wednesday October 12, @08:24AM (#13772260) (http://www.cubo.co.uk/) ...even though back in 2000 I wrote a 3D software engine in Java that was more than acceptably fast enough to run Wolfenstein-quality gfx on a P75. And I knew fairly little about optimisation in Java, so that could probably have been faster. Throw in hardware acceleration, and you can bet these'll be fast enough for at least ok game-level graphics. Beyond games, I don't know what use this would have... [ Reply to ThisRe:And queue the Java-being-slow comments... by CyricZ (Score:2) Wednesday October 12, @08:26AMRe:And queue the Java-being-slow comments... by MaestroSartori (Score:2) Wednesday October 12, @08:39AMRe:And queue the Java-being-slow comments... by LnxAddct (Score:1) Wednesday October 12, @10:18AMRe:And queue the Java-being-slow comments... by CyricZ (Score:2) Wednesday October 12, @02:22PMRe:And queue the Java-being-slow comments... by LnxAddct (Score:1) Wednesday October 12, @02:58PMRe:And queue the Java-being-slow comments... by Agret (Score:2) Wednesday October 12, @08:31AMRe:And queue the Java-being-slow comments... by MaestroSartori (Score:2) Wednesday October 12, @08:48AM Re:And queue the Java-being-slow comments... (Score:4, Interesting) by vidnet (580068) on Wednesday October 12, @09:16AM (#13772540) (http://www.vidarholen.net/) For a taste of what java can do, try Jake2 [bytonic.de]. It's a Quake2 engine written entirely in java (easily started via webstart, on both linux and windows, and automatically downloads the Quake2 demo files if you want).You would never be able to tell that it's java. [ Reply to This | ParentRe:And queue the Java-being-slow comments... by sgt scrub (Score:1) Wednesday October 12, @09:24AMRe:And queue the Java-being-slow comments... by deander2 (Score:2) Wednesday October 12, @09:54AMRe:And queue the Java-being-slow comments... by IamTheRealMike (Score:3) Wednesday October 12, @09:02AMRe:And queue the Java-being-slow comments... by badfish99 (Score:2) Wednesday October 12, @09:18AMRe:And queue the Java-being-slow comments... by IamTheRealMike (Score:2) Wednesday October 12, @06:08PM1 reply beneath your current threshold.Re:And queue the Java-being-slow comments... by MaestroSartori (Score:2) Wednesday October 12, @09:05AMRe:And queue the Java-being-slow comments... by Rycross (Score:2) Wednesday October 12, @11:09AMRe:And queue the Java-being-slow comments... by MaestroSartori (Score:2) Wednesday October 12, @11:39AM3 replies beneath your current threshold. Explain this to me (Score:4, Insightful) by RootsLINUX (854452) <rootslinuxNO@SPAMgmail.com> on Wednesday October 12, @08:27AM (#13772276) (http://www.ece.utexas.edu/~olsen) Why would I want (or even care) to have 3D graphics on my mobile phone/device? The screen is already tiny. I'm sure 3D graphics are more computationally expensive and power-consuming than traditional 2D graphics. And in the end, I'm still just looking at a 2D projection of a 3D image. Its not like I want to be playing Half-life or another FPS on my cellphone. I'm sorry but this just seems stupid to me and I get the feeling that the only people who will want this "feature" will be the hard-core tech gadget geeks out there. Does a 3D API bring *anything* useful to the mobile table??? [ Reply to ThisRe:Explain this to me by CyricZ (Score:3) Wednesday October 12, @08:36AMRe:Explain this to me by seanellis (Score:2) Wednesday October 12, @08:38AMRe:Explain this to me by tomstdenis (Score:2) Wednesday October 12, @09:05AMRe:Explain this to me by lightversusdark (Score:1) Wednesday October 12, @09:27AMRe:Explain this to me by JensLudolf (Score:1) Wednesday October 12, @09:39AMRe:Explain this to me by clonmult (Score:1) Wednesday October 12, @10:20AMRe:Explain this to me by orasio (Score:2) Wednesday October 12, @11:28AM1 reply beneath your current threshold. Gaming on the Phone !? (Score:2, Informative) by betasam (713798) <{moc.liamg} {ta} {masateb}> on Wednesday October 12, @08:37AM (#13772324) (http://www.sunilbetabaskar.com/ | Last Journal: Wednesday October 12, @05:33AM) One of the early companies focusing on Mobile Phones was Fathammer [fathammer.com]. Initially they started out with a ports of Doom engine based classics; now seem to have a nice collection. I believe the stronger driver of applications on phone platforms is the phone hardware. Java 3D API is one more trial at luring in more applications by providing easy-to-use API. But even if Handspring and Palm were to provide 3D programming API for their Treo series (or anyone else does likewise), it still depends on the hardware. Things one would be bothered about would be battery times and audio which actually adds on to gaming experience (and already no one wants to hear loud ringtones everywhere!) Nokia airs an ad in India which almost drives in a message saying "phones are for talking" while showing a model with a vidcam and video playback. I wonder how many people find time to use the "other" applications on the phone apart from a PIM (Phonebook/Calendar). Further, with 3D games what about an added issue of people getting something akin to Doom Induced Motion Sickness(DIMS [slashdot.org])? I have found controls for a 3D game (on my Treo) pretty difficult to use for a 3D racer game, which kind of kills the experience. I wonder how many people play 3D games on their phones comfortably, and where they get them from! [ Reply to This Neat article (Score:4, Interesting) by LarsWestergren (9033) on Wednesday October 12, @08:39AM (#13772335) (http://www.smirkingchimp.com/) I have some friends who are working with developing Java games. So far the big money is not in developing titles for phone companies portals (or even worse trying to sell them to the end user yourself) but to develop ad games for companies who make them available for free downloads, usually as a part of a competition.From what I understand, the best part of the job is that since graphics on mobile phones and other limited devices are so cruddy development focus tends to be on addictive gameplay rather than eyecandy. It is also still possible to be a small independent game studio, no need for a big art studio to render hours of CGI, etc.Worst part is that just about all phone developers are very sloppy when it comes to implementing the J2ME standards and all models tend to have their own quirks. Sony Ericsson and Nokia are probably the best, but that is not saying much. So in this case, it really is "write once, debug everywhere" type java.Mobile gaming is really taking off, I read on GameDev [gamedev.net] for instance that mobile game developers Gameloft increased their workforce from 432 to 1375 employees. [ Reply to ThisRe:Neat article by XMunkki (Score:2) Wednesday October 12, @10:31AM Java! That's the answer! (Score:3, Insightful) by MBCook (132727) <foobarsoft@foobarsoft.com> on Wednesday October 12, @08:49AM (#13772391) (http://www.foobarsoft.com/) There! That's it! Java is the solution!There are so many people (me included) who would love to be able to program for the PSP, but they won't open it up for various reasons (fear of piracy, mostly).So why not give people a Java sandbox (J2ME would be fine) to play in? That way they can make games and other fun things, but they won't be able to use it to boot pirated games off memory sticks and such (unless they REALLY mess up the JVM). Seems like a perfect solution.They sold the Net Yahorzee, why not give us this? Download a copy today (tied to the PSP's serial number to prevent copying?) for only $20! They'd make a fortune. [ Reply to ThisRe:Java! That's the answer! by tomstdenis (Score:2) Wednesday October 12, @09:01AMRe:Java! That's the answer! by MBCook (Score:2) Wednesday October 12, @09:23AMRe:Java! That's the answer! by tomstdenis (Score:2) Wednesday October 12, @09:28AMRe:Java! That's the answer! by MBCook (Score:2) Wednesday October 12, @10:10AMRe:Java! That's the answer! by tomstdenis (Score:2) Wednesday October 12, @10:59AMRe:Java! That's the answer! by Troed (Score:1) Wednesday October 12, @01:15PMRe:Java! That's the answer! by tomstdenis (Score:2) Wednesday October 12, @02:09PMRe:Java! That's the answer! by PsyQ (Score:2) Wednesday October 12, @12:22PM Intersection of these two subjects (Score:1, Funny) by dwalsh (87765) on Wednesday October 12, @08:52AM (#13772404) Here is a Venn diagram showing the interest in Java on mobile devices e.g. phones (MIDP) and Java 3D and the intersection between them:     _________    _________    /         \  /         \   / Java On   \/  Java 3D  \  /   Phones   /\            \  \            \/            /   \           /\           /    \_________/  \_________/Hope both of those guys enjoyed the article!  [ Reply to This Who uses their mobile phone for games? (Score:2) by digitaldc (879047) on Wednesday October 12, @09:00AM (#13772441) The article is interesting and is very informative.My only objection is that I do not like playing games on a tiny screen using tiny buttons. Since most games nowadays are not just 'steer and shoot,' the complexity of the controls and intricacy of the graphics plays into the overall fun of the game.I applaud the efforts to get better 3D graphics for mobile devices, but I don't think I will ever be wasting my time playing games on my cell phone. It is much more enjoyable to play a console system on a large projection TV. But of course that is just MY opinion. [ Reply to ThisRe:Who uses their mobile phone for games? by JensLudolf (Score:1) Wednesday October 12, @10:02AMRe:Who uses their mobile phone for games? by tshuma (Score:1) Wednesday October 12, @12:11PMRe:Who uses their mobile phone for games? by Nightspirit (Score:1) Wednesday October 12, @08:12PM John Carmack (Score:1) by vasqzr (619165) <`vasqzr' `at' `netscape.net'> on Wednesday October 12, @09:12AM (#13772508) He made a comment a while back:"The biggest problem is that Java is really slow. On a pure cpu / memory / display / communications level, most modern cell phones should be considerably better gaming platforms than a Game Boy Advanced. With Java, on most phones you are left with about the CPU power of an original 4.77 mhz IBM PC, and lousy control over everything." [ Reply to This3 replies beneath your current threshold. Ha! 3D... (Score:2)

0 Comments:

Post a Comment

<< Home