Register FAQ Search Today's Posts Mark Forums Read
Go Back   JazzJackrabbit Community Forums » Open Forums » General Jazz Jackrabbit Talk

Jazz 2 dedicated server project

Reply
 
Thread Tools
Grytolle Grytolle's Avatar

JCF Member

Joined: Sep 2004

Posts: 4,126

Grytolle is a forum legendGrytolle is a forum legendGrytolle is a forum legend

Feb 17, 2007, 07:21 PM
Grytolle is offline
Reply With Quote
*frowns at Jerry's sexual invitation*
__________________
<center></center>
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Feb 18, 2007, 02:16 PM
Jerrythabest is offline
Reply With Quote
ehh


any progress lately?
__________________
Dermo Dermo's Avatar

JCF Member

Joined: Jun 2005

Posts: 1,743

Dermo should make better posts

May 13, 2007, 12:38 AM
Dermo is offline
Reply With Quote
features

i think something like private messaging to certain players would be cool and not so difficult from the server end. the server just chooses the socket ID to send the packet out to and that's it. Make it something like if you want to PM player 7 and you're player 1, press "t" and type "/7 (message)" without quotes or parenthesis

i also think (a more difficult feat) would be the ability to host under a different port for router users who aren't allowed to open up 10053 for jj2. The reason this would be difficult is because it would be nice if the receiving end didn't require a "PortPatch" to join. Uh this i kno is possible but i'm too tired to think of how since it's 3:30am sunday morning.

Another not so easy feature would be the ability for 33+ players to join. Don't ask i don't know how that would be done.

Another semi-difficult would be the ability to only allow a user inputted number of downloaders at a time to prevent flooding/crashing.

As a console app i would like it to not operate on strictly command lines because that's too confusing. Make it start up

"Welcome to Jazz Jackrabbit 2 Dedicated Server"
"Please input your gametype (ctf, battle, treasure, coop, or race)
"please input the maximum player number"
"Load custom game mode? (1=true, 0=false)"
[if true] "Please type in the custom game mode you would like to load (i don't know)"
"Log chat (1=true, 0=false)"
"Allow Private Messaging "
"number of hearts"
"number of kills to win"
"server name"
"at this time please type in the file names of any plugins you'd like to load at this time or press enter to start"
"plugin serversync.dll loaded"
"server running"
__________________
Yes, I am, in fact, ALWAYS the one to blame for everything. And none of your are full of yourself. Good job.

Do you like Stijn? Take my poll!




Windows is not a virus. A virus is small and efficient...

Note to Stijn: how am i even getting away with this
Neobeo

JCF Member

Joined: Sep 2002

Posts: 409

Neobeo is an asset to this forumNeobeo is an asset to this forum

May 13, 2007, 01:27 AM
Neobeo is offline
Reply With Quote
Quote:
Originally Posted by Drmoo View Post
i think something like private messaging to certain players would be cool and not so difficult from the server end. the server just chooses the socket ID to send the packet out to and that's it. Make it something like if you want to PM player 7 and you're player 1, press "t" and type "/7 (message)" without quotes or parenthesis
This isn't too difficult. In fact this could also work with clients PM-ing other players.

Quote:
Originally Posted by Drmoo View Post
i also think (a more difficult feat) would be the ability to host under a different port for router users who aren't allowed to open up 10053 for jj2. The reason this would be difficult is because it would be nice if the receiving end didn't require a "PortPatch" to join. Uh this i kno is possible but i'm too tired to think of how since it's 3:30am sunday morning.
From the server's point of view, this is much easier to implement than the idea above. And there is no way for the client to join other ports without some kind of patch since the value 10052 is hardcoded.

Quote:
Originally Posted by Drmoo View Post
Another not so easy feature would be the ability for 33+ players to join. Don't ask i don't know how that would be done.
This is not possible, for various reasons such as the range-checking done by clients, and the fact that memory is allocated just enough for 32 players.

Quote:
Originally Posted by Drmoo View Post
Another semi-difficult would be the ability to only allow a user inputted number of downloaders at a time to prevent flooding/crashing.
I don't see a link between downloading and crashing, but in any case this is a pretty trivial follow-up. It appears this is a bug in the way Jazz2.exe handles downloading. This should not happen in a properly designed server. Nevertheless, there will probably be options to limit the bandwidth usage and stuff.

Quote:
Originally Posted by Drmoo View Post
As a console app i would like it to not operate on strictly command lines because that's too confusing. Make it start up

"Welcome to Jazz Jackrabbit 2 Dedicated Server"
"Please input your gametype (ctf, battle, treasure, coop, or race)
"please input the maximum player number"
"Load custom game mode? (1=true, 0=false)"
[if true] "Please type in the custom game mode you would like to load (i don't know)"
"Log chat (1=true, 0=false)"
"Allow Private Messaging "
"number of hearts"
"number of kills to win"
"server name"
"at this time please type in the file names of any plugins you'd like to load at this time or press enter to start"
"plugin serversync.dll loaded"
"server running"
That would defeat the whole idea of it being a command line program. Ideally, it should just start without requiring the user to further input any information. This would most likely be done with the combination of command-line and an INI file.

And aside from all that, custom game modes (or even the official ones) will be converted to "profiles" which contain, at the minimum, the base game mode, and some sort of script.
__________________
<TABLE border=1><TR><TD>Facts:
Jazz Sprite Dynamite (JSD)
Tileset Extractor
Neobeo's Firetruck

</TD><TD>Myths:
Jazz Creation Station Plus (JCS+) - 10%
Coming soon - a dedicated server! - 25%
Jazz Sprite Dynamite v2 (JSDv2) - 2%
Another generic single-player level - 0%
</TD></TR></TABLE>

Last edited by Neobeo; May 13, 2007 at 06:04 AM. Reason: download lag bug
Dermo Dermo's Avatar

JCF Member

Joined: Jun 2005

Posts: 1,743

Dermo should make better posts

May 13, 2007, 07:39 AM
Dermo is offline
Reply With Quote
Quote:
Originally Posted by neobeo
This is not possible, for various reasons such as the range-checking done by clients, and the fact that memory is allocated just enough for 32 players.
that i can see (make a jazz patch with the dedicated server that allocates more memory to each client)

Quote:
Originally Posted by neobeo
It appears this is a bug in the way Jazz2.exe handles downloading. This should not happen in a properly designed server. Nevertheless, there will probably be options to limit the bandwidth usage and stuff.
good...

Quote:
Originally Posted by neobeo
That would defeat the whole idea of it being a command line program. Ideally, it should just start without requiring the user to further input any information. This would most likely be done with the combination of command-line and an INI file.

And aside from all that, custom game modes (or even the official ones) will be converted to "profiles" which contain, at the minimum, the base game mode, and some sort of script.
then make it a windows app with a UI and everything. I don't really like the idea of a console app.
__________________
Yes, I am, in fact, ALWAYS the one to blame for everything. And none of your are full of yourself. Good job.

Do you like Stijn? Take my poll!




Windows is not a virus. A virus is small and efficient...

Note to Stijn: how am i even getting away with this
FQuist FQuist's Avatar

JCF Member

Joined: Sep 2001

Posts: 3,251

FQuist is an asset to this forumFQuist is an asset to this forum

May 13, 2007, 07:44 AM
FQuist is offline
Reply With Quote
If the console app is designed well you can always create a GUI app to control the console.
__________________
“The truth is that everything that can be accomplished by showing a person when he's wrong, ten times as much can be accomplished by showing him where he is right.” - Robert T. Allen

Interesting Jazz-related links:
Thread: Gameplay Theories - Thread: Make Up Your Own Gametype

Spotify.fm

Grytolle Grytolle's Avatar

JCF Member

Joined: Sep 2004

Posts: 4,126

Grytolle is a forum legendGrytolle is a forum legendGrytolle is a forum legend

May 13, 2007, 09:32 AM
Grytolle is offline
Reply With Quote
console > GUI

anyway lets recode the dedicated server in msl for minimum portability and slowness
__________________
<center></center>
Torkell Torkell's Avatar

Stealth Admin

Joined: Jul 2004

Posts: 2,153

Torkell is a forum legendTorkell is a forum legendTorkell is a forum legend

May 13, 2007, 12:07 PM
Torkell is offline
Reply With Quote
Quote:
Originally Posted by Neobeo View Post
That would defeat the whole idea of it being a command line program. Ideally, it should just start without requiring the user to further input any information. This would most likely be done with the combination of command-line and an INI file.
You could keep it as a normal command-line program, but have a parameter to run in interactive mode.
__________________
-- Torkell



Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

May 14, 2007, 10:07 AM
Jerrythabest is offline
Reply With Quote
The idea of an INI file is good, you can easily save setting profiles by renaming the INI file ;p. I don't like command line stuff, you could at least make it possible to add a GUI plugin (and you *could* include it with the console).
__________________
Cpp Cpp's Avatar

JCF Member

Joined: Mar 2001

Posts: 1,557

Cpp is doing well so far

May 19, 2007, 12:01 AM
Cpp is offline
Reply With Quote
Personally I'd focus on the engine/system itself as the root of everything else. The console and/or GUI can be later made as an extension. Most people would prefer a nice GUI, but console is also a must for "low-level" admins. Think of it this way... new users would love to have an easy-to-use interface (like Controller v4.1), but to fine-tune the server with advanced features you'd have to consult the console. And if you ask me, I'd make something like Q3A/UEd console, not the DOS one.
__________________
<a href="http://nmap.org/"><img border="0" alt="Nmap Security Scanner" src="http://images.insecure.org/nmap/images/prop/nmap_bnr_matrix_pfos.gif"/></a>
Dermo Dermo's Avatar

JCF Member

Joined: Jun 2005

Posts: 1,743

Dermo should make better posts

Jun 4, 2007, 01:21 PM
Dermo is offline
Reply With Quote
(PA) anybody with (FTG) would make it a Windows Console and not a DOS Console.

[Personal attack and flame tag edit. - FQuist]
__________________
Yes, I am, in fact, ALWAYS the one to blame for everything. And none of your are full of yourself. Good job.

Do you like Stijn? Take my poll!




Windows is not a virus. A virus is small and efficient...

Note to Stijn: how am i even getting away with this

Last edited by FQuist; Jun 5, 2007 at 04:40 AM.
Old Jun 12, 2007, 07:54 PM
Dermo
This message has been deleted by FQuist. Reason: Off-topic. Post any complaints in the feedback forum, please.
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 13, 2007, 08:03 AM
Jerrythabest is offline
Reply With Quote
Next is he'll remove your account XD

lol just spamming ;p


To give this post some value, IMO the first released version should already give the possibility to manage the whole server in a GUI, no matter how this is done ;p not everyone knows how to work with command lines, y'know ;p
__________________
Grytolle Grytolle's Avatar

JCF Member

Joined: Sep 2004

Posts: 4,126

Grytolle is a forum legendGrytolle is a forum legendGrytolle is a forum legend

Jun 13, 2007, 09:04 AM
Grytolle is offline
Reply With Quote
what's so hard? typing something? just rtfm
__________________
<center></center>
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 13, 2007, 09:10 AM
Jerrythabest is offline
Reply With Quote
No, remembering and understanding what to type. Especially syntaxes.
__________________
Dermo Dermo's Avatar

JCF Member

Joined: Jun 2005

Posts: 1,743

Dermo should make better posts

Jun 19, 2007, 02:00 PM
Dermo is offline
Reply With Quote
I think that this dedicated server should have a GUI as said (i do like jerry's idea of an .ini file more tho). But I think that if it would have the settings in an .ini file, than the console should sit on the taskbar (or whatever it's called down where the clock is) and run in the background. The only way to change settings is to run the GUI which would be ran separately and it would command the console. Why would you do such a crazy thing? So you could put the dedicated server in startup and it wouldn't bother you when your computer starts up. It would just sit in the background and run. And you could always unload it by right clicking and clicking quit or exit or something.
__________________
Yes, I am, in fact, ALWAYS the one to blame for everything. And none of your are full of yourself. Good job.

Do you like Stijn? Take my poll!




Windows is not a virus. A virus is small and efficient...

Note to Stijn: how am i even getting away with this

Last edited by Dermo; Jun 19, 2007 at 02:01 PM. Reason: none of your business
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 19, 2007, 02:58 PM
Jerrythabest is offline
Reply With Quote
It's called the system tray. ;p And I don't think it's meant to be running while you are doing whatever you are doing at your PC.
__________________
Dermo Dermo's Avatar

JCF Member

Joined: Jun 2005

Posts: 1,743

Dermo should make better posts

Jun 19, 2007, 05:08 PM
Dermo is offline
Reply With Quote
If it's got all the features of an anti-crash and it won't lock up your PC I don't see a problem with it running while you do whatever you want. It could be a plugin or something for the dedicated server. Occasionally i'll run 1.23+ and SalLog and use SalLog to minimize both jj2 and sallog to the system tray while i do whatever I feel like. In the meanwhile jj2 will be hosting a test server. Whenever I do that I get no issues except an occasional lock-up which fixes itself after about 2 or 3 minutes. So it sounds like a good idea to me.
__________________
Yes, I am, in fact, ALWAYS the one to blame for everything. And none of your are full of yourself. Good job.

Do you like Stijn? Take my poll!




Windows is not a virus. A virus is small and efficient...

Note to Stijn: how am i even getting away with this
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 20, 2007, 05:24 AM
Jerrythabest is offline
Reply With Quote
Though still, your server isn't as dedictated as when it's the only thing running, and not in the background... A tray icon plugin is still a nice idea =)
__________________
Cpp Cpp's Avatar

JCF Member

Joined: Mar 2001

Posts: 1,557

Cpp is doing well so far

Jun 20, 2007, 12:55 PM
Cpp is offline
Reply With Quote
Why a plugin? Features like those can be easily integrated into the program itself
__________________
<a href="http://nmap.org/"><img border="0" alt="Nmap Security Scanner" src="http://images.insecure.org/nmap/images/prop/nmap_bnr_matrix_pfos.gif"/></a>
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 20, 2007, 01:16 PM
Jerrythabest is offline
Reply With Quote
The more things are plugins, the less things will be loaded by default. If you need something you can just order the program to load it while starting, other things will remain unloaded. Saves resources and performance.
__________________
Dermo Dermo's Avatar

JCF Member

Joined: Jun 2005

Posts: 1,743

Dermo should make better posts

Jun 20, 2007, 04:30 PM
Dermo is offline
Reply With Quote
I was about to say it would make it easier if you put the most limited amount of commands required to run a program like this. Maybe /startserver /endserver /banplayer etc would all be required but when you get commands like /minimizetray and you add too many commands, it confuses so easily. So an .ini is a given on this program. Aside from an .ini file, yes a plugin would make it a lot easier. /loadplugin "minimizetray.dll" /loadplugin "autobanajazz.dll" would make it easier because you only have to remember one command and the file name which you can more than easily change to your liking.

EDIT: I'm supposed to be presenting ideas so here's one. Make it so you can set the command for certain things. Like if you want the command to change the level to be /changelevel, you should be able to edit the .ini file and change the level change command to /changelevel.
__________________
Yes, I am, in fact, ALWAYS the one to blame for everything. And none of your are full of yourself. Good job.

Do you like Stijn? Take my poll!




Windows is not a virus. A virus is small and efficient...

Note to Stijn: how am i even getting away with this
Stijn Stijn's Avatar

Administrator

Joined: Mar 2001

Posts: 6,964

Stijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to behold

Jun 20, 2007, 04:36 PM
Stijn is offline
Reply With Quote
I think it's time Neobeo gives some update on how this is all going to work or people will keep making suggestions that won't really fit in how the program is (afaik) going to work.
Dermo Dermo's Avatar

JCF Member

Joined: Jun 2005

Posts: 1,743

Dermo should make better posts

Jun 20, 2007, 05:05 PM
Dermo is offline
Reply With Quote
I think it's time you look at his signature.

http://www.jazz2online.com/jcf/member.php?u=810
__________________
Yes, I am, in fact, ALWAYS the one to blame for everything. And none of your are full of yourself. Good job.

Do you like Stijn? Take my poll!




Windows is not a virus. A virus is small and efficient...

Note to Stijn: how am i even getting away with this
Birdie Birdie's Avatar

JCF Member

Joined: Mar 2005

Posts: 1,796

Birdie is doing well so far

Jun 20, 2007, 06:18 PM
Birdie is offline
Reply With Quote
Right now it's a console, and I see no reason for neobeo to give it a GUI.
__________________
Dermo Dermo's Avatar

JCF Member

Joined: Jun 2005

Posts: 1,743

Dermo should make better posts

Jun 20, 2007, 06:52 PM
Dermo is offline
Reply With Quote
so you don't have to type a bunch of confusing commands. Giving it a GUI would make it easier.
__________________
Yes, I am, in fact, ALWAYS the one to blame for everything. And none of your are full of yourself. Good job.

Do you like Stijn? Take my poll!




Windows is not a virus. A virus is small and efficient...

Note to Stijn: how am i even getting away with this
Cpp Cpp's Avatar

JCF Member

Joined: Mar 2001

Posts: 1,557

Cpp is doing well so far

Jun 21, 2007, 01:54 AM
Cpp is offline
Reply With Quote
I do not see a reason why tray icon has to be a plugin. Small pieces of code like this can easily be integrated into the program engine. You can later edit the INI settings to disable parts of the program you do not wish to load. I like the GUI plugin idea for it allows users to make their own GUIs that way. The console window needs to be part of the engine in either case, but users can still choose not to display it on startup (can access it later via system tray icon).
__________________
<a href="http://nmap.org/"><img border="0" alt="Nmap Security Scanner" src="http://images.insecure.org/nmap/images/prop/nmap_bnr_matrix_pfos.gif"/></a>
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 21, 2007, 06:09 AM
Jerrythabest is offline
Reply With Quote
A great idea: perform multiple commands while typing only one. In some kind of options file, maybe just the program's ini file, you can specify a command (like /doallthis) that will perform multiple core/plugin commands (like /ban# or /restartlevel etc etc). It should also be possible to use parameters. This way, I'd make a command /switchtobattle "levelname" score which will rename the server to RR Server ..Battle.., change to gametype Battle, loads level levelname.j2l and changes the needed score to win to score.
__________________
Cpp Cpp's Avatar

JCF Member

Joined: Mar 2001

Posts: 1,557

Cpp is doing well so far

Jun 21, 2007, 06:13 AM
Cpp is offline
Reply With Quote
Jerry: Well you have two ways of doing that. Either write a new function inside the script that does all that and then invoke it, or you can use console macros, which you can use by typing "exec macro.txt" where this macro.txt file contains a number of console commands.
__________________
<a href="http://nmap.org/"><img border="0" alt="Nmap Security Scanner" src="http://images.insecure.org/nmap/images/prop/nmap_bnr_matrix_pfos.gif"/></a>
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 21, 2007, 07:35 AM
Jerrythabest is offline
Reply With Quote
You mean it's already implemented?
__________________
Dermo Dermo's Avatar

JCF Member

Joined: Jun 2005

Posts: 1,743

Dermo should make better posts

Jun 21, 2007, 09:48 AM
Dermo is offline
Reply With Quote
Now I really like Overlord's idea. But I still like the idea of an .ini file better.
__________________
Yes, I am, in fact, ALWAYS the one to blame for everything. And none of your are full of yourself. Good job.

Do you like Stijn? Take my poll!




Windows is not a virus. A virus is small and efficient...

Note to Stijn: how am i even getting away with this
Stijn Stijn's Avatar

Administrator

Joined: Mar 2001

Posts: 6,964

Stijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to beholdStijn is a splendid one to behold

Jun 21, 2007, 04:18 PM
Stijn is offline
Reply With Quote
Quote:
Originally Posted by Drmoo View Post
I think it's time you look at his signature.

http://www.jazz2online.com/jcf/member.php?u=810
That was not what I meant

I don't want to show off or anything, but I dare say I'd know more than most here about this program, having used an early version of it. Judging by my expierence with this program several things mentioned here are quite unfeasible or very easy to implement yourself. However, I do not know what Neobeo wants people to know about his program, so I was asking him to react on this matter in person.
R3ptile

Banned

Joined: Aug 2003

Posts: 3,885

R3ptile is doing well so far

Jun 22, 2007, 12:39 AM
R3ptile is offline
Reply With Quote
once this program is released
i'm planning to make an irc gather bot
each player simply types "!add"
once it gets the required X amountation of players
it automatically starts a server for them
to play their 2o2\3o3\4o4
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 22, 2007, 06:03 AM
Jerrythabest is offline
Reply With Quote
I wonder if it's easy to add features to a program if they only know Dutch, English, some German, HTML, PHP and a tiny bit of Javascript. ;p
__________________
Cpp Cpp's Avatar

JCF Member

Joined: Mar 2001

Posts: 1,557

Cpp is doing well so far

Jun 22, 2007, 10:24 AM
Cpp is offline
Reply With Quote
A PHP plugin is possible. This way you could control your server directly from the web. Maybe this is a better way of administrating the server than over the regular chat in jj22 itself, but both could be useful.
__________________
<a href="http://nmap.org/"><img border="0" alt="Nmap Security Scanner" src="http://images.insecure.org/nmap/images/prop/nmap_bnr_matrix_pfos.gif"/></a>
Dermo Dermo's Avatar

JCF Member

Joined: Jun 2005

Posts: 1,743

Dermo should make better posts

Jun 22, 2007, 10:57 AM
Dermo is offline
Reply With Quote
lawl. I like that. Since a lot of us own websites. But I find that to be a funny and weird way to control a server.

EDIT: I finished my Flash course this year. Could you control the server using an embedded swf/flv file somehow?
__________________
Yes, I am, in fact, ALWAYS the one to blame for everything. And none of your are full of yourself. Good job.

Do you like Stijn? Take my poll!




Windows is not a virus. A virus is small and efficient...

Note to Stijn: how am i even getting away with this
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 22, 2007, 11:41 AM
Jerrythabest is offline
Reply With Quote
The point is that the server program will need to understand what I'm writing. And I know no more languages than the ones mentioned in the previous post... So it's only easy to add functions for most people if it supports such scripts.
__________________
Neobeo

JCF Member

Joined: Sep 2002

Posts: 409

Neobeo is an asset to this forumNeobeo is an asset to this forum

Jun 22, 2007, 07:15 PM
Neobeo is offline
Reply With Quote
Well, seeing as the last post I made here was 6 weeks ago, I dare say I'm overdue for an official project status update. I probably should have for another 4 replies or so, so that this would at the top of a new page. Nevertheless, here are the current list of features.

What already works:
  • Listing/delisting the server
  • Movement and shooting of clients
  • Normal chatting
  • Downloading of levels and tilesets

What is buggy/still in progress:
  • Collision detection when shooting
  • Capturing the flag
  • Object pickups

Currently codenamed azure moon, the official name is still not being made known yet. The official scripting language to be used with this project is Lua. Support for DLL plugin has been considered, but will probably not be added until the later stages.

The scripting language, for maximum flexibility, has been designed to intercept events, such as onRoast, onChat, onJoin, onCapture. As such, Lua was chosen because it will be easy for beginners to pick up. Ideally, each gamemode would run as its own .lua file.

Commands will act as functions, and can be handled globally or locally. Examples of the former are "/kick", "/n", or "/instagib on". These are functions which, when you call, will be handled internally by the server so you don't really need to know how they work. You can also define your own function, such as defining "/spaztagib" to be "player.health = 1; if player.character = jazz then kick player". (That was pseudocode though, and doesn't reflect what Lua actually looks like).

The final issue is, as much as I'd like to make this project open source, plenty of obstacles have popped up along the way making the opensourceness of this project a very controversial decision. Said discussion is still being held by the board of directors. As at time of publishing this project is still closed source.

Finally, time for the Q&A:
  1. The dedicated server will run entirely on console. For those who have used console, this decision will be an easy one to support since it calls for much more effective and efficient means of modifying the server. If you really need a GUI, there might be a possibility of creating one from the script.
  2. Minimizing the console to the system tray is trivial, and doesn't require a plugin. However, it could be modified with the scripting language.
  3. I really never intended this to work with PHP or Flash. However, the plugin system is flexible. If you could get them to communicate with the server by means of DLL or otherwise, then be my guest.
__________________
<TABLE border=1><TR><TD>Facts:
Jazz Sprite Dynamite (JSD)
Tileset Extractor
Neobeo's Firetruck

</TD><TD>Myths:
Jazz Creation Station Plus (JCS+) - 10%
Coming soon - a dedicated server! - 25%
Jazz Sprite Dynamite v2 (JSDv2) - 2%
Another generic single-player level - 0%
</TD></TR></TABLE>
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 23, 2007, 04:15 AM
Jerrythabest is offline
Reply With Quote
Quote:
Originally Posted by Neobeo View Post
Well, seeing as the last post I made here was 6 weeks ago, I dare say I'm overdue for an official project status update. I probably should have for another 4 replies or so, so that this would at the top of a new page. Nevertheless, here are the current list of features.
The first one to post on a new page must quote your post! =D ;p

Quote:
Originally Posted by Neobeo View Post
Currently codenamed azure moon, the official name is still not being made known yet.
I've always liked that codename. If you don't have a name yet, stop thinking. It's a really nice name.

Quote:
Originally Posted by Neobeo View Post
The official scripting language to be used with this project is Lua. Support for DLL plugin has been considered, but will probably not be added until the later stages. The scripting language, for maximum flexibility, has been designed to intercept events, such as onRoast, onChat, onJoin, onCapture. As such, Lua was chosen because it will be easy for beginners to pick up. Ideally, each gamemode would run as its own .lua file.

Commands will act as functions, and can be handled globally or locally. Examples of the former are "/kick", "/n", or "/instagib on". These are functions which, when you call, will be handled internally by the server so you don't really need to know how they work. You can also define your own function, such as defining "/spaztagib" to be "player.health = 1; if player.character = jazz then kick player". (That was pseudocode though, and doesn't reflect what Lua actually looks like).
Sounds good. A scripting code that's easy to pick up is a very good choice indeed.

Quote:
Originally Posted by Neobeo View Post
The final issue is, as much as I'd like to make this project open source, plenty of obstacles have popped up along the way making the opensourceness of this project a very controversial decision. Said discussion is still being held by the board of directors. As at time of publishing this project is still closed source.
Just keep it closed source, unless you are going to do what Epic did with Jazz. If you make it opensource you get all kinds of incompatible edits which is not very useful.

Quote:
Originally Posted by Neobeo View Post
Finally, time for the Q&A:
  1. The dedicated server will run entirely on console. For those who have used console, this decision will be an easy one to support since it calls for much more effective and efficient means of modifying the server. If you really need a GUI, there might be a possibility of creating one from the script.
  2. Minimizing the console to the system tray is trivial, and doesn't require a plugin. However, it could be modified with the scripting language.
  3. I really never intended this to work with PHP or Flash. However, the plugin system is flexible. If you could get them to communicate with the server by means of DLL or otherwise, then be my guest.
Heh, lemme try to make a link with PHP. That'll really improve my PHP skills as well for sure, though it won't be easy =)
__________________
Cataphract

JCF Member

Joined: Sep 2002

Posts: 24

Cataphract is doing well so far

Jun 25, 2007, 09:10 PM
Cataphract is offline
Reply With Quote
Quote:
Originally Posted by Neobeo View Post
The final issue is, as much as I'd like to make this project open source, plenty of obstacles have popped up along the way making the opensourceness of this project a very controversial decision. Said discussion is still being held by the board of directors. As at time of publishing this project is still closed source.
Hum? Obstacles? The only valid reasons I can think right now for making a program not free is if 1) one has licensed code from a third party and wasn't given permission to disclose it or 2) the business model depends upon it.

I hope it's not some silly objection such as Jerrythabest's or something like "it'll make it easier for someone to write an exploit and run arbitrary code on the clients".

It's not like there are many skilled programmers in this community that would benefit from making the program free, but it would probably be a good incentive to attract more people -- it's not just the stand-alone server program, anyone would have access to the JJ2 protocol and a reference implementation of it. That certainly creates interesting possibilities.

It could also accelerate the development, since everyone would be able to contribute with patches.

So I hope the "board of directors" decides to release this under a free license.
Jerrythabest Jerrythabest's Avatar

JCF Member

Joined: Apr 2005

Posts: 2,602

Jerrythabest is a forum legendJerrythabest is a forum legendJerrythabest is a forum legend

Jun 25, 2007, 11:37 PM
Jerrythabest is offline
Reply With Quote
Hmm you actually made me doubt now! GJ
__________________
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump

All times are GMT -8. The time now is 12:16 AM.