- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我们正在与一些 friend 一起开发一款类似于自上而下的 RPG 多人游戏,以供学习(和娱乐!)之用。我们已经在游戏中有一些实体并且输入正在工作,但是网络实现让我们头疼 :D
当尝试使用 dict 进行转换时,一些值仍将包含 pygame.Surface,我不想传输它,并且在尝试对它们进行 jsonfy 时会导致错误。其他我想以简单方式传输的对象(如 Rectangle)无法自动转换。
一个新玩家连接到服务器并希望获得所有对象的当前游戏状态。
我们使用基于“Entity-Component”的架构,因此我们将游戏逻辑非常严格地分离到“系统”中,而数据则存储在每个 Entity 的“组件”中。实体是一个非常简单的容器,只有一个 ID 和一个组件列表。
示例实体(为了更好的可读性而缩短):
Entity |-- Component (Moveable) |-- Component (Graphic) | |- complex datatypes like pygame.SURFACE | `- (...) `- Component (Inventory)
We tried different approaches, but all seems not to fit very well or feel "hacky".
Very Python near, so not easy to implement other clients in future. And I´ve read about some security risks when creating items from network in this dynamic way how pickle it offers. It does not even solve the Surface/Rectangle issue.
__dict__Still contains the reference to the old objects, so a "cleanup" or "filter" for unwanted datatypes happens also in the origin. A deepcopy throws Exception.
...\Python\Python36\lib\copy.py", line 169, in deepcopy
rv = reductor(4)
TypeError: can't pickle pygame.Surface objects
“EnitityManager”类的方法应该生成所有实体的快照,包括它们的组件。此快照应无任何错误地转换为 JSON - 如果可能,无需在此核心类中进行太多配置。
class EnitityManager:
def generate_world_snapshot(self):
""" Returns a dictionary with all Entities and their components to send
this to the client. This function will probably generate a lot of data,
but, its to send the whole current game state when a new player
connects or when a complete refresh is required """
# It should be possible to add more objects to the snapshot, so we
# create our own Snapshot-Datastructure
result = {'entities': {}}
entities = self.get_all_entities()
for e in entities:
result['entities'][e.id] = deepcopy(e.__dict__)
# Components are Objects, but dictionary is required for transfer
cmp_obj_list = result['entities'][e.id]['components']
# Empty the current list of components, its going to be filled with
# dictionaries of each cmp which are cleaned for the dump, because
# of the errors directly coverting the whole datastructure to JSON
result['entities'][e.id]['components'] = {}
for cmp in cmp_obj_list:
cmp_copy = deepcopy(cmp)
cmp_dict = cmp_copy.__dict__
# Only list, dict, int, str, float and None will stay, while
# other Types are being simply deleted including their key
# Lists and directories will be cleaned ob recursive as well
cmp_dict = self.clean_complex_recursive(cmp_dict)
result['entities'][e.id]['components'][type(cmp_copy).__name__] \
= cmp_dict
logging.debug("EntityMgr: Entity#3: %s" % result['entities'][3])
return result
我们可以找到一种方法来手动覆盖我们不需要的元素。但是随着组件列表的增加,我们必须将所有的过滤器逻辑放入这个核心类中,它不应该包含任何组件特化。
我们真的必须将所有逻辑都放入 EntityManager 中以过滤正确的对象吗?这感觉不太好,因为我希望在没有任何硬编码配置的情况下完成所有到 JSON 的转换。
如何以最通用的方法转换所有这些复杂数据?
感谢您阅读到目前为止,非常感谢您的提前帮助!
我们使用了以下架构的组合,到目前为止效果非常好,也很好维护!
实体管理器现在调用实体的 get_state() 函数。
class EntitiyManager:
def generate_world_snapshot(self):
""" Returns a dictionary with all Entities and their components to send
this to the client. This function will probably generate a lot of data,
but, its to send the whole current game state when a new player
connects or when a complete refresh is required """
# It should be possible to add more objects to the snapshot, so we
# create our own Snapshot-Datastructure
result = {'entities': {}}
entities = self.get_all_entities()
for e in entities:
result['entities'][e.id] = e.get_state()
return result
实体只有一些基本属性可以添加到状态并将 get_state() 调用转发给所有组件:
class Entity:
def get_state(self):
state = {'name': self.name, 'id': self.id, 'components': {}}
for cmp in self.components:
state['components'][type(cmp).__name__] = cmp.get_state()
return state
组件本身现在从它们的新父类(super class)组件继承它们的 get_state() 方法,它只关心所有简单的数据类型:
class Component:
def __init__(self):
logging.debug('generic component created')
def get_state(self):
state = {}
for attr, value in self.__dict__.items():
if value is None or isinstance(value, (str, int, float, bool)):
state[attr] = value
elif isinstance(value, (list, dict)):
# logging.warn("Generating state: not supporting lists yet")
pass
return state
class GraphicComponent(Component):
# (...)
现在,如果需要,每个开发人员都有机会覆盖此函数以直接在组件类中(如图形、运动、库存等)为复杂类型创建更详细的 get_state() 函数以更准确的方式保护状态——这对于将来维护代码来说是一件大事,将这些代码片段放在一个类中。
下一步是实现用于从同一类中的状态创建项目的静态方法。这使得这项工作非常顺利。
非常感谢树懒的帮助。
最佳答案
Do we really have to put all the logic into the EntityManager for filtering the right objects?
不,你应该使用 polymorphism .
您需要一种可以在不同系统之间共享的形式来表示您的游戏状态的方法;因此,也许可以为您的组件提供一个将返回其所有状态的方法,以及一个允许您从该状态创建组件实例的工厂方法。
(Python 已经有了__repr__
魔术方法,但你不必使用它)
因此,与其在实体管理器中进行所有过滤,不如让他在所有组件上调用这个新方法,并让每个组件决定结果的样子。
像这样:
...
result = {'entities': {}}
entities = self.get_all_entities()
for e in entities:
result['entities'][e.id] = {'components': {}}
for cmp in e.components:
result['entities'][e.id]['components'][type(cmp).__name__] = cmp.get_state()
...
一个组件可以这样实现它:
class GraphicComponent:
def __init__(self, pos=...):
self.image = ...
self.rect = ...
self.whatever = ...
def get_state(self):
return { 'pos_x': self.rect.x, 'pos_y': self.rect.y, 'image': 'name_of_image.jpg' }
@staticmethod
def from_state(state):
return GraphicComponent(pos=(state.pos_x, state.pos_y), ...)
从服务器接收状态的客户端 EntityManager
将迭代每个实体的组件列表并调用 from_state
来创建实例。
关于Python:如何为多人游戏序列化对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55353114/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!