Posts: 6
Threads: 1
Joined: Feb 2015
Thanks: 0
Given 0 thank(s) in 0 post(s)
02-17-2015, 08:24 PM
(This post was last modified: 02-17-2015, 08:51 PM by Sulfatezz.)
Hey,
I have a idea for this Project. Whats About to write MCServerPE?
It would be a Minecraft: Pocket Edition Server Software written in C++. Currently the only working Server Software for PE ist Pocketmine-MP in PHP but it has many bugs/many things are not implemented...
I started learning C++ a while go and know the basics so i could help. For the Protocol we could use RakNet..
It would be great if someone would make this Project.
About MCPE:
Its the Mobile Version of Minecraft written in c++. Its still in Alpha but month for month there comes Updates.
Posts: 6,485
Threads: 176
Joined: Jan 2012
Thanks: 131
Given 1074 thank(s) in 852 post(s)
Hi, welcome to the forum.
How much different is the PE content from the desktop content? Would it make sense to actually implement just the protocol, so that MCS could serve both desktop and PE versions with the same world data? That would make much more sense to me.
Posts: 783
Threads: 12
Joined: Jan 2014
Thanks: 2
Given 73 thank(s) in 61 post(s)
Given mcservers arcitecture there is only two ways to approch this, one a compleatly seperate application from the ground up. That would be a large amount of work. The other option would be to modify MCServer, so that with the right settings it could act as a PE server. This would be incompatible with using raknet for networking as we have our own networking system. However this would still be a signifint amount of work as MCServer is very tighly coupled, and is missing serveral key components (AI).
Posts: 6
Threads: 1
Joined: Feb 2015
Thanks: 0
Given 0 thank(s) in 0 post(s)
Its mean that the MCServer protocol stuff wont work with MCPE and we had to use RakNet
Posts: 783
Threads: 12
Joined: Jan 2014
Thanks: 2
Given 73 thank(s) in 61 post(s)
Login is not a problem as we already have support for offline logon. World generation is also not too bad as we already have a framework for multiple generators, so interfacing with existing code is not difficult. The problem areas are the block handlers which only support a single behavior. Also there is no requirement to use raknet. It is perfectly feasible to reimplement the protocol from scratch.
Posts: 783
Threads: 12
Joined: Jan 2014
Thanks: 2
Given 73 thank(s) in 61 post(s)
That on its own is doable. The problem is that you don't get a perticuarly reliable server as there are too many edge cases and minor diffierences as we discovered when we were trying to support 1.6 and 1.8 with the same server.