-
I assume that you're asking if it's possible to have a computer player that participates in games.
Currently, as downloaded from SourceForge, Jogre does not have infrastructure to handle computer players. And none of the games available in the SourceForge repository have computer player support.
However, there was a web site (which I believe is now defunct) that modified the Jogre engine...
2009-10-16 05:41:36 UTC by rwalter42
-
Hello guys,
Is it possible to support single player version of currently supported games?.
2009-10-14 12:32:57 UTC by zpzg9
-
rwalter42 committed patchset 1779 of module jogre to the Java Online Gaming Real-time Engine CVS repository, changing 7 files.
2009-09-24 03:58:57 UTC by rwalter42
-
Iori,
You'll need to update your local files to get the latest source from CVS from sourceforge to get my updates; there's no package with this change yet.
Once you get it, you should find ...jogre/server/src/org/jogre/server/IRatingSystem.java. If you have that file, then you'll have the other changes to make it work.
-Richard.
2009-09-24 01:10:25 UTC by rwalter42
-
I think there's no IRatingSystem Richard. The EloRatingSystem implements nothing.
Should I refactor it, and get an IRatingSystem? where do I have to put it?.
2009-09-23 21:40:43 UTC by ioriyagami
-
I just checked in an update that does this. (It was somewhat easier than I thought it would be.)
It's basically what I wrote above, except for step 4. Since the ratings system for a game should be static, there's no reason to keep calling getRatingSystem() each time a game ends. So, instead I've added a constructor for the ServerController that takes a parameter which is the rating system...
2009-09-22 05:37:08 UTC by rwalter42
-
rwalter42 committed patchset 1778 of module jogre to the Java Online Gaming Real-time Engine CVS repository, changing 8 files.
2009-09-22 05:13:22 UTC by rwalter42
-
You're doing a great work Richard :)
I wish I could help you for the documentation and tutorials, but my english is not very helpful.
Waiting for your update :)
2009-09-22 01:49:57 UTC by ioriyagami
-
Iori,
Thanks for the response. So, you do want to manage your own ratings system rather use the ELO system provided by the Jogre system.
I've had a chance to look at the code some and in order to accomplish that, I think that we need to rearrange how the ratings are currently done. However, I don't think that it will be too bad to do.
Currently, the module...
2009-09-22 01:38:59 UTC by rwalter42
-
Yeah, thank you Richard.
That's what I meant in fact. I tried to follow the trace of the GameOver operation and I reached to where the system manage these things called ELO Rating, etc.. this is why I asked.
What I want to do is : Once a game is finished, every one will get some points that go to the database. you know, for example 10 pts for the winner, maybe this change to 20 if he...
2009-09-21 19:26:33 UTC by ioriyagami