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 (407)
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   
Pages: [1]
  ignore  |  Print  
  RMS problem  (Read 754 times)
0 Members and 1 Guest are viewing this topic.
Offline monopolyli

Senior Newbie




Java games rock!


« Posted 2005-04-24 18:37:21 »

After I installed an application to my phone, and the application contains a RMS. When I run this application, it can save my highest score.
However, after I closed my application, all data (record) will be lost.
Does it is possible to make a permanent database in the application?
Thanks a lot!
My RMS to open a database is:
public static RecordStore openRSAnyway (String rsname)
{

RecordStore rs = null;

if(rsname.length()>32)
return null;
try {
rs = RecordStore.openRecordStore(rsname, true);
return rs;
} catch (Exception e)
{
return null;
}
}

public static RecordStore openRSExisted(String rsname)
{
RecordStore rs = null;
if (rsname.length()>32)
return null;
try {
rs = RecordStore.openRecordStore(rsname, false);
return rs;
} catch (Exception e)
{
return null;
}
}

public static int writeInt2RS(RecordStore rs, int data)
{
byte []tmp = new byte[4];
tmp[0] = (byte)(0xff&(data>>24));
tmp[1] = (byte)(0xff&(data>>16));
tmp[2] = (byte)(0xff&(data>>Cool);
tmp[3] = (byte)(0xff&(data>>0));
try
{
return rs.addRecord(tmp, 0, tmp.length);
} catch(Exception e)
{
}
return -1;
}

Offline Abuse

JGO Coder


Medals: 2


falling into the abyss of reality


« Reply #1 - Posted 2005-04-24 21:53:45 »

you are calling closeRecordStore(), arn't you?

If you don't, its upto the implementation to decide whether to actually save your data, or to simply discard it.

Make Elite IV:Dangerous happen! Pledge your backing at KICKSTARTER here!
Offline monopolyli

Senior Newbie




Java games rock!


« Reply #2 - Posted 2005-04-25 11:04:20 »

I called closeRecordStore() already:
public class GameScreen extends Canvas {
..............
rs = RMSUtil.openRSAnyway(dbname);
.........
public void paint() {
................
rs = RMSUtil.openRSExisted(dbname);
if (rs==null)
{
g.setColor(255, 255, 255);
g.drawString("Your Score "+String.valueOf(spriteScore), 0, 20, Graphics.TOP|Graphics.LEFT);
}
else {
try {
if (spriteScore>=RMSUtil.readInt4RS(rs, r1)) {
r1 = spriteScore;
r1 = RMSUtil.writeInt2RS(rs, spriteScore);
g.setColor(255, 255, 255);
g.drawString("Highest Score" +String.valueOf(RMSUtil.readInt4RS(rs, r1)), 0, 40, Graphics.TOP|Graphics.LEFT);
rs.closeRecordStore();
}
else
{
g.setColor(255, 255, 255);
g.drawString("Highest Score " +String.valueOf(RMSUtil.readInt4RS(rs, r1)), 0, 40, Graphics.TOP|Graphics.LEFT);
rs.closeRecordStore();
}
} catch (Exception e) {}
}
.............
}
.............
..........
}

But it doesnt work, did I have another thing go wrong?
Thanks for your reply


Games published by our own members! Check 'em out!
Try the Free Demo of Revenge of the Titans
Offline Abuse

JGO Coder


Medals: 2


falling into the abyss of reality


« Reply #3 - Posted 2005-04-25 12:36:37 »

The number of calls to open and close must both match.

Your example above appears to open it twice, and close it only once.

Make Elite IV:Dangerous happen! Pledge your backing at KICKSTARTER here!
Offline monopolyli

Senior Newbie




Java games rock!


« Reply #4 - Posted 2005-04-25 17:54:48 »

I tried to close the record store.
But it also saves the record during the game is running, and the record will lost after I close the application.
Huh
Thanks for your reply
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks 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 (88 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (191 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.101 seconds with 21 queries.