Java and Worldgroup

Idea and code exchange. Porting and new development talk here!

Moderator: Mod Squad

Post Reply
User avatar
efgosser
Posts: 29
Joined: Sat Dec 30, 2006 11:02 pm
Location: Goldbar, Washington
Contact:

Java and Worldgroup

Post by efgosser »

Is their anyone doing any java aps for Worldgroup?
Restore Major BBS

Questman
Posts: 629
Joined: Sat Apr 01, 2006 9:48 pm
Location: Raleigh, NC
Contact:

Post by Questman »

I'd like to redo the whole thing in Java.

:-)

User avatar
efgosser
Posts: 29
Joined: Sat Dec 30, 2006 11:02 pm
Location: Goldbar, Washington
Contact:

WG Java

Post 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.
Restore Major BBS

User avatar
dspain
Posts: 2102
Joined: Sun May 07, 2006 10:38 pm
Location: richmond,virginia
Contact:

Re: WG Java

Post 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#)

Questman
Posts: 629
Joined: Sat Apr 01, 2006 9:48 pm
Location: Raleigh, NC
Contact:

Post 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.

User avatar
dspain
Posts: 2102
Joined: Sun May 07, 2006 10:38 pm
Location: richmond,virginia
Contact:

Post 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.

Questman
Posts: 629
Joined: Sat Apr 01, 2006 9:48 pm
Location: Raleigh, NC
Contact:

Post 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.

User avatar
dspain
Posts: 2102
Joined: Sun May 07, 2006 10:38 pm
Location: richmond,virginia
Contact:

Post 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.

Stoneslinger76
Posts: 427
Joined: Wed Apr 23, 2008 12:01 pm
Location: Kitchener, ON, Canada
Contact:

Post 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.
Stoneslinger
telnet://theswampbbs.net or http://theswampbbs.net

User avatar
dspain
Posts: 2102
Joined: Sun May 07, 2006 10:38 pm
Location: richmond,virginia
Contact:

Post 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.

Syclops
Posts: 112
Joined: Sun Dec 24, 2006 6:25 am

Post 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.

Post Reply