python可以开发我的世界服务端吗?

Posted ERROR-403

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python可以开发我的世界服务端吗?相关的知识,希望对你有一定的参考价值。

前几天突发奇想,想用python去开发一个我的世界服务器。

试着写了一点,看网上关于这部分的东西很少,于是决定发一个博客,把我遇到的一些问题分享给大家:

1.游戏与服务端通信使用的编码?

目前我找到的是cp437这个编码。

2.properties文件在python里读取方式?

我改进了一个大佬写的模块,可以用来读取properties后缀文件。

import re
import os
import tempfile
class Properties:
    def __init__(self, file_name):
        self.file_name = file_name
        self.properties = {}
        try:
            fopen = open(self.file_name, 'r')
            for line in fopen:
                line = line.strip()
                if line.find('=') > 0 and not line.startswith('#'):
                    strs = line.split('=')
                    self.properties[strs[0].strip()] = strs[1].strip()
        except Exception as e:
            raise e
        else:
            fopen.close()
    def has_key(self, key): 
        return key in self.properties 
    def get(self, key, default_value=''):
        if key in self.properties:
            return self.properties[key] 
        return default_value
    def put(self, key, value):
        self.properties[key] = value
        replace_property(self.file_name, key + '=.*', key + '=' + value, True)
def parse(file_name):
    return Properties(file_name)
def replace_property(file_name, from_regex, to_str, append_on_not_exists=True):
    file = tempfile.TemporaryFile()
    if os.path.exists(file_name):
        r_open = open(file_name,'r')
        pattern = re.compile(r'' + from_regex)
        found = None
        for line in r_open:
            if pattern.search(line) and not line.strip().startswith('#'):
                found = True
                line = re.sub(from_regex, to_str, line)
            file.write(line)
        if not found and append_on_not_exists:
            file.write('\\n' + to_str)
        r_open.close()
        file.seek(0)
        content = file.read()
        if os.path.exists(file_name):
            os.remove(file_name)
        w_open = open(file_name,'w')
        w_open.write(content)
        w_open.close()
        file.close()
    else:
        pass

示例调用代码

[注:读取模块名称为property.py且在同级目录]

import property
import os
software_path = os.path.split(os.path.realpath(__file__))[0]  # 读取软件目录
config_mc_server_name="server.properties"
config_mc_server_path = os.path.join(software_path, config_mc_server_name)#读取配置文件位置
props = property.parse(config_mc_server_path)   #读取文件
motd=props.get('motd')#把server.properties的motd赋值到motd变量中

总结

总之感谢大家看完,因为是第一次写博客,所以难免有一些不当之处,以后我会继续改进!

这个服务端不知道能不能实现,如果有有经验的大佬可以提一些建议QwQ,感谢!

以上是关于python可以开发我的世界服务端吗?的主要内容,如果未能解决你的问题,请参考以下文章

你可能不知道的JavaScript代码片段和技巧(下)

你可能不知道的JavaScript代码片段和技巧(上)

您可以使用 Django 框架将 Python 用于前端和后端吗? [关闭]

我应该将 id 令牌从我的 SPA 发送到我的 rest 后端吗?

我可以在一台服务器上托管 Angular2 前端和 Golang 后端吗

radmin 必须安装服务端吗