Page 1 of 1

Java and Worldgroup

Posted: Wed Feb 25, 2009 5:11 pm
by efgosser
Is their anyone doing any java aps for Worldgroup?

Posted: Fri Feb 27, 2009 3:25 am
by Questman
I'd like to redo the whole thing in Java.

:-)

WG Java

Posted: Fri Feb 27, 2009 5:25 pm
by efgosser
Let's start that. Lets will post any Conversions we make and maybe get some intrest in it. Ive been wirking with a kid doing a Runescape clone... all java their.. works pretty good too.

Re: WG Java

Posted: Fri Feb 27, 2009 10:13 pm
by dspain
efgosser wrote:Let's start that. Lets will post any Conversions we make and maybe get some intrest in it. Ive been wirking with a kid doing a Runescape clone... all java their.. works pretty good too.
i been doing something similiar in .net (c#)

Posted: Sat Mar 07, 2009 10:42 pm
by Questman
The main issue with a Java re-write is:

- Do we keep the terminal mode; and if so
- Do we have a compatibility layer to run the old C++ DLLs?

If we can lick that, then it's a worthwhile endeavor.

I do not like .NET at all. Java is bad enough from an OO perspective (it's not as good as Smalltalk) but MS ... MS is irresponsible.

Posted: Sun Mar 08, 2009 12:52 am
by dspain
Questman wrote:The main issue with a Java re-write is:

- Do we keep the terminal mode; and if so
- Do we have a compatibility layer to run the old C++ DLLs?

If we can lick that, then it's a worthwhile endeavor.

I do not like .NET at all. Java is bad enough from an OO perspective (it's not as good as Smalltalk) but MS ... MS is irresponsible.
terminal mode, why not make something on a web page that launched an applet for the interaction using the login params passed to it?

so if i wanna play "MajorMUD" i click the majormud link and it opens a page with a telnet applet.
all login would be held from the web side abd it could just pass info to an applet which would launch.

active-java web pages to replace active-html...javascript?



as far as .net i just play with it, im gonna make a trivia server sort of like FW thats stand alone just to get my feet wet, im prolly gonna go by the way of XML for configuration options and SQL-lite for databasing.
for a complete server i dunno if .net would be wise but for just a game server, seemed the best way to go.
i played with some java muds and most seemed a bit sluggish.

Posted: Sun Mar 08, 2009 6:34 pm
by Questman
Java (not applet, but in and of itself) has enterprise class speed these days and has for quite some time. It could certainly perform as well as an engine written in C++.

Not sure on the applet thing - applets are a bit pase - and people are understandably hesitant to let anything run on their browsers that they don't understand.

There are ways to do terminal mode natively in the browser. It's a bit of a hack but it can work. Something to explore.

Posted: Sun Mar 08, 2009 7:32 pm
by dspain
Questman wrote:Java (not applet, but in and of itself) has enterprise class speed these days and has for quite some time. It could certainly perform as well as an engine written in C++.

Not sure on the applet thing - applets are a bit pase - and people are understandably hesitant to let anything run on their browsers that they don't understand.

There are ways to do terminal mode natively in the browser. It's a bit of a hack but it can work. Something to explore.
yeah anything like that would work, as the generations are getting younger more and more people are not gonna know about 'telnet' or 'rlogin' and such so i figured if ya made it open in the web page would be more likely everyone would access it.

Posted: Wed Mar 11, 2009 11:44 am
by Stoneslinger76
dspain wrote:
Questman wrote:The main issue with a Java re-write is:

- Do we keep the terminal mode; and if so
- Do we have a compatibility layer to run the old C++ DLLs?

If we can lick that, then it's a worthwhile endeavor.

I do not like .NET at all. Java is bad enough from an OO perspective (it's not as good as Smalltalk) but MS ... MS is irresponsible.
terminal mode, why not make something on a web page that launched an applet for the interaction using the login params passed to it?

so if i wanna play "MajorMUD" i click the majormud link and it opens a page with a telnet applet.
all login would be held from the web side abd it could just pass info to an applet which would launch.

active-java web pages to replace active-html...javascript?



as far as .net i just play with it, im gonna make a trivia server sort of like FW thats stand alone just to get my feet wet, im prolly gonna go by the way of XML for configuration options and SQL-lite for databasing.
for a complete server i dunno if .net would be wise but for just a game server, seemed the best way to go.
i played with some java muds and most seemed a bit sluggish.

What would all the mudder's do without their Megamud or other term programs.
Is thier not more possible uses for the software with an embeded SQL capability?
Why not just add capabilty for a sysop to use Java and or SQL and keep the underlying system with updated btrieve.
I realize this would be a sh*tload of work but it would give a sysop a few various ways of doing things.

Posted: Mon Mar 23, 2009 2:36 am
by dspain
Stoneslinger76 wrote:
dspain wrote:
Questman wrote:The main issue with a Java re-write is:

- Do we keep the terminal mode; and if so
- Do we have a compatibility layer to run the old C++ DLLs?

If we can lick that, then it's a worthwhile endeavor.

I do not like .NET at all. Java is bad enough from an OO perspective (it's not as good as Smalltalk) but MS ... MS is irresponsible.
terminal mode, why not make something on a web page that launched an applet for the interaction using the login params passed to it?

so if i wanna play "MajorMUD" i click the majormud link and it opens a page with a telnet applet.
all login would be held from the web side abd it could just pass info to an applet which would launch.

active-java web pages to replace active-html...javascript?



as far as .net i just play with it, im gonna make a trivia server sort of like FW thats stand alone just to get my feet wet, im prolly gonna go by the way of XML for configuration options and SQL-lite for databasing.
for a complete server i dunno if .net would be wise but for just a game server, seemed the best way to go.
i played with some java muds and most seemed a bit sluggish.

What would all the mudder's do without their Megamud or other term programs.
Is thier not more possible uses for the software with an embeded SQL capability?
Why not just add capabilty for a sysop to use Java and or SQL and keep the underlying system with updated btrieve.
I realize this would be a sh*tload of work but it would give a sysop a few various ways of doing things.
you referring to basically a web version that interacts with the terminal mode?
the web-teleconference does that.

Posted: Wed Mar 25, 2009 2:54 am
by Syclops
dspain wrote:yeah anything like that would work, as the generations are getting younger more and more people are not gonna know about 'telnet' or 'rlogin' and such so i figured if ya made it open in the web page would be more likely everyone would access it.
I know its not quite perfect because someone would have to install the C/S Client, but you can launch a C/S Terminal Window and take a User directly into a Module in C/S or Terminal Mode from the Web right now.