Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 18:48

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



What about having a Conquer server running on Linux or Mac?

Discussion on What about having a Conquer server running on Linux or Mac? within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
hyperco's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 112
Received Thanks: 12
What about having a Conquer server running on Linux or Mac?

Video:

As the right above video shows, I'm currently working on a project to have a server running over MacOS and Linux platforms. Did anyone do something like that?

Btw, the server is being developed with NodeJS. All cryptography and stuffs were rewritten to javascript (using typescript and compiled), the same for sockets.

Maybe we can make it an open source project for the community? What do you think?
hyperco is offline  
Old 03/29/2019, 16:10   #2
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by hyperco View Post
Video:

As the right above video shows, I'm currently working on a project to have a server running over MacOS and Linux platforms. Did anyone do something like that?

Btw, the server is being developed with NodeJS. All cryptography and stuffs were rewritten to javascript (using typescript and compiled), the same for sockets.

Maybe we can make it an open source project for the community? What do you think?
Please don't develop a server in Node.js. in terms of open source for cross platform, I already made a server called . I wrote it in C# .NET Core. I had a server before that written in Go, and I've seen servers before that Go server written in C++ QT and Java. There are many options for writing a server for Linux and Mac.
Spirited is offline  
Old 03/29/2019, 18:01   #3
 
hyperco's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 112
Received Thanks: 12
Quote:
Originally Posted by Spirited View Post
Please don't develop a server in Node.js. in terms of open source for cross platform, I already made a server called . I wrote it in C# .NET Core. I had a server before that written in Go, and I've seen servers before that Go server written in C++ QT and Java. There are many options for writing a server for Linux and Mac.
But what is the point for not using Node? It seems to be very flexible, and in terms of performance, is it that bad?
hyperco is offline  
Old 03/29/2019, 20:53   #4
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by hyperco View Post
But what is the point for not using Node? It seems to be very flexible, and in terms of performance, is it that bad?
JavaScript is not a good server language, no. Node.js is known for bad performance but good concurrency modelling for web request processing. If you want a high performance server for Conquer Online, I wouldn't go with Node.js.
Spirited is offline  
Old 03/29/2019, 21:12   #5


 
KraHen's Avatar
 
elite*gold: 0
Join Date: Jul 2006
Posts: 2,216
Received Thanks: 793
Node.js is not bad per say, it's just that it's not great for this specific purpose - real time game servers that is. At the same time, CO has a low concurrent player count so it might just work. Is it optimal? No.
KraHen is offline  
Old 03/30/2019, 01:32   #6
 
hyperco's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 112
Received Thanks: 12
Of course it’s not the best option, but I think it would worth the effort, if not to have a server running, for me, it will be a great learning journey, as I’m trying to not inspire me so much on other bases.

I’m giving it a shot. Maybe I can post a benchmark of a comparison of the Node.js and a .Net one. I bet if I code it right it will get better performance than a “Messi” one with 200 players playing haha!

If someone is interested in, I can edit this post and give some information about the development process and progress...
hyperco is offline  
Old 03/30/2019, 02:07   #7
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by hyperco View Post
Of course it’s not the best option, but I think it would worth the effort, if not to have a server running, for me, it will be a great learning journey, as I’m trying to not inspire me so much on other bases.

I’m giving it a shot. Maybe I can post a benchmark of a comparison of the Node.js and a .Net one. I bet if I code it right it will get better performance than a “Messi” one with 200 players playing haha!

If someone is interested in, I can edit this post and give some information about the development process and progress...
I honestly don't think you could out perform even Messi with Node.js. It's optimized for load balancing and request volume, not low latency or computation heavy requests. Node.js is made for API access to a data source for a frontend JavaScript client. The whole idea is a full stack of JavaScript from the database (NoSQL / JSON) to the client. Using Node.js for a Conquer Online server would be inappropriate and a misuse of the language, not a valuable learning experience. I know I'm wasting my breath because you'll probably just do it anyways, but Node.js is not designed for this. I would instead recommend C# .NET Core, Java, Go, Kotlin, Rust, etc. There's plenty of really good languages that you could learn instead. Maybe use Node.js for a website for your server, instead. That would be very appropriate use of Node.js.
Spirited is offline  
Old 03/30/2019, 09:35   #8


 
KraHen's Avatar
 
elite*gold: 0
Join Date: Jul 2006
Posts: 2,216
Received Thanks: 793
To be fair conquer doesn't need super low latency large bandwith traffic, like an FPS would for instance. I think it's fair to assume that node.js would do the job if done properly, to be honest, and I do think it would outperform "Messi". However, is that really the bar? You can easily outperform it by factors of 10s or 100s if using the proper technology. You could still use Javascript for scripting.

At the end of the day of course if you want to do it in Node, do it! You will be the first one to do so in the community (publicly at least). At the very worst, we'll see if it's a bad idea and exactly why.
KraHen is offline  
Old 03/31/2019, 08:27   #9
 
hyperco's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 112
Received Thanks: 12
Quote:
Originally Posted by KraHen View Post
However, is that really the bar? You can easily outperform it by factors of 10s or 100s if using the proper technology. You could still use Javascript for scripting.
I will take a look on these technologies. As the project stills on the very beginning, it couldn’t be that bad to migrate...


Quote:
Originally Posted by KraHen View Post
At the end of the day of course if you want to do it in Node, do it! You will be the first one to do so in the community (publicly at least). At the very worst, we'll see if it's a bad idea and exactly why.
But I think this was the motivation I was expecting on this community, as the first one with Node, not ignoring Spirited’s opinion, but if this is really a bad idea, KraHen is right, we need to have it in practice to take the conclusive comparisons and know exactly why.
hyperco is offline  
Old 03/31/2019, 09:38   #10
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by hyperco View Post
I will take a look on these technologies. As the project stills on the very beginning, it couldn’t be that bad to migrate...




But I think this was the motivation I was expecting on this community, as the first one with Node, not ignoring Spirited’s opinion, but if this is really a bad idea, KraHen is right, we need to have it in practice to take the conclusive comparisons and know exactly why.
You're not the first person to use Node.js in the community, nor the first person to try making an MMORPG game server using Node.js. Here is the very first google result on "mmorpg server in node.js": . This person knows what he's talking about. I can't emphasize enough how awful of an idea this is. As someone who studied languages for a year at uni, this is painful. You don't need to make a comparison and this community doesn't need another burned out developer. Go put your time and effort into a server you'd want to support using a language you're already comfortable in and is known to work. Please. This is a really dumb idea. I don't mean to discourage you, but please try another language.

And yeah, Node.js is not good on performance. It's not optimized for this kind of thing.


Spirited is offline  
Old 04/01/2019, 17:45   #11
 
hyperco's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 112
Received Thanks: 12
Quote:
Originally Posted by Spirited View Post
You're not the first person to use Node.js in the community, nor the first person to try making an MMORPG game server using Node.js. Here is the very first google result on "mmorpg server in node.js": . This person knows what he's talking about. I can't emphasize enough how awful of an idea this is. As someone who studied languages for a year at uni, this is painful. You don't need to make a comparison and this community doesn't need another burned out developer. Go put your time and effort into a server you'd want to support using a language you're already comfortable in and is known to work. Please. This is a really dumb idea. I don't mean to discourage you, but please try another language.

And yeah, Node.js is not good on performance. It's not optimized for this kind of thing.



I'm sorry, but I was very discouraged...

I didn't mean to be the first to make an MMORPG server, just a CO one. I did read the post and it give me some ideas of how to deal some problems I might have with Node.js. I know you have your own experience to say what you are saying. I do not expect to have the best server performance, neither the fastest one, but I do expect to have it working well, serving in a satisfactorying time, and providing at least a good game experience... As KraHen pointed, for CO (and I did played CO for a long time...), it doesn't need to be a super server to handle all requests and respond just in time.

And no, I'm not crazy. Node.js will never compete to the usual languages for this purpose. The comparison I was talking about was only to shit public servers out there...

If no one is interested on it, then will not hear about this work for a time... Thank you for your attention anyway.
hyperco is offline  
Old 04/01/2019, 22:05   #12
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Quote:
Originally Posted by hyperco View Post
I'm sorry, but I was very discouraged...

I didn't mean to be the first to make an MMORPG server, just a CO one. I did read the post and it give me some ideas of how to deal some problems I might have with Node.js. I know you have your own experience to say what you are saying. I do not expect to have the best server performance, neither the fastest one, but I do expect to have it working well, serving in a satisfactorying time, and providing at least a good game experience... As KraHen pointed, for CO (and I did played CO for a long time...), it doesn't need to be a super server to handle all requests and respond just in time.

And no, I'm not crazy. Node.js will never compete to the usual languages for this purpose. The comparison I was talking about was only to **** public servers out there...

If no one is interested on it, then will not hear about this work for a time... Thank you for your attention anyway.
Well, my goal was to discourage you from using Node.js for this purpose, but if that's what you want to do, don't let people like me tell you otherwise. As long as you take my points into consideration, that's all I can really ask for. Good luck.
Spirited is offline  
Old 04/02/2019, 02:25   #13
 
hyperco's Avatar
 
elite*gold: 0
Join Date: Aug 2010
Posts: 112
Received Thanks: 12
Quote:
Originally Posted by Spirited View Post
Well, my goal was to discourage you from using Node.js for this purpose, but if that's what you want to do, don't let people like me tell you otherwise. As long as you take my points into consideration, that's all I can really ask for. Good luck.
I'll take your points for sure, I'm a fan of your work. Thank you for your time.
hyperco is offline  
Old 04/02/2019, 10:29   #14


 
KraHen's Avatar
 
elite*gold: 0
Join Date: Jul 2006
Posts: 2,216
Received Thanks: 793
Also, if your point is being cross platform, we have some sources that already are. I know for a fact that COPSv7 (7? The C++ one, 6 or 7) runs on OSX via Qt - so probably Linux as well.
KraHen is offline  
Old 04/02/2019, 12:15   #15
 
Super Aids's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 1,761
Received Thanks: 946
I've done it in D like 4 or more years ago.
Super Aids is offline  
Reply

Tags
conquer, linux, mac, nodejs, server


Similar Threads Similar Threads
Conquer Server running on Linux(Ubuntu)
12/03/2011 - CO2 Private Server - 14 Replies
Hey Guys, im currently thinking about to start playing a bit with a ConquerServer. Im still wondering bout that no guides are available to run one under a unix based System. Is it possible to create a Conquer Server under Ubuntu and has maybe someone allready created a guide for ? greetings LeX
Conquer Online is having Mac version!!!
04/11/2011 - Conquer Online 2 - 13 Replies
Attention, Mac addicts! :bandit: We have some great news! The TQ team is proud to announce that Conquer Online is now coming to the Mac! This new Mac Beta version is scheduled for release around April, 2011. Soon, players on Mac will be able to do battle and quest in this epic world of Kung-Fu! Everyone will be able to join in the most exciting PvP battles, slay dangerous monsters, complete perilous tasks, and just have the most fun of your gaming life! ...
Tip - Running CO under Linux Or Mac
02/18/2009 - CO2 Guides & Templates - 3 Replies
First off, I'm not going to give step by step instruction. You can visit Google for in depth how-to's on running Applications such as Wine, VMware Fusion, Or BootCamp. --------------------------------------- Options for Running CO under Linux: --------------------------------------- Google: Wine or VMware
Help on Running Conquer on Linux
03/04/2007 - Conquer Online 2 - 1 Replies
I'm using SuSE Linux 9.3 and currently using "gfsgl" to run conquer on my linux box. Id did run and initialized, it even patched but as it loadds the main window, it flags an error. The log looks like this: GFSGL 0.92.1 (White Doll)...



All times are GMT +2. The time now is 18:48.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.