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 (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  Game Development / Performance Tuning / Re: Char array over String? on: 2003-09-22 20:45:43
thanks for the help.  Good thoughts
2  Game Development / Performance Tuning / Char array over String? on: 2003-09-22 18:39:31
I've read on the java performance tuning section at java.sun.com that there's an increase in performance when char array's are used.  Does anyone feel that you should substitute all your strings for char array's whenever possible?  If so, how would you use them because they won't expand.  I'm thinking maybe arrayCopy would be helpful there.  Just wanted to see what everyone's opinion was.  thanks
3  Game Development / Performance Tuning / Re: Java's Unsafe class on: 2003-08-23 15:46:46
Good thinking.  Thanks for the help
4  Game Development / Performance Tuning / Re: Java's Unsafe class on: 2003-08-22 13:57:26
When I allocate memory with the Unsafe class what exactly is it doing?  I'm really just experimenting with the class.  And the other thing is that when i call unsafe.addressSize() it always returns 4 for some odd reason.  Anyone know how this class works? Huh
5  Game Development / Networking & Multiplayer / Re: java.nio cyclic buffer? on: 2003-08-21 00:23:48
i say just make it public,recompile and stick the class back into your rt.jar.    Wink
6  Game Development / Performance Tuning / Re: Java's Unsafe class on: 2003-08-14 13:39:16
yeah this is true.  It was just something i was toying around with.   Grin
7  Game Development / Performance Tuning / Re: Java's Unsafe class on: 2003-08-14 13:12:54
Thanks for your help.  The only reason I was curious about that Unsafe class was my friend wanted to make a stringBuffer class using JNI and it turned out being alot slower than even your normal stringbuffer.  I'm guessing the JNI calls are expensive.  so we went hunting in the nio classes and found no native methods and that lead to the Unsafe class.  Only problem is that security exception that i'm getting.  Guess it's unusable at this point.   :-/
8  Game Development / Performance Tuning / Java's Unsafe class on: 2003-08-14 02:02:51
Anyone have experience using sun.misc.Unsafe ?  I tried using it today and it's giving an error when i run it.  

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
import sun.misc.*;

public class UnsafeTester {
  private static final Unsafe unsafe = Unsafe.getUnsafe();
  public static void main(String[] args) {
    long ptr = unsafe.allocateMemory(512);
    try{
      unsafe.putChar(ptr,'a');
      unsafe.putChar(ptr,'b');
      System.out.println("Unsafe: " + unsafe.toString());
    }
    finally{
      unsafe.freeMemory(ptr);
    }
  }
}

java.lang.ExceptionInInitializerError
Caused by: java.lang.SecurityException: Unsafe
      at sun.misc.Unsafe.getUnsafe(Unsafe.java:68)
      at garbage.UnsafeTester.<clinit>(UnsafeTester.java:8)
Exception in thread "main"

I'm not sure exactly how I should go about tackling this one so any help would be great.   Wink
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 (83 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (187 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.148 seconds with 21 queries.