معرفی شرکت ها


aoe2de-rms-gen-obj-parser-2.1.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

aoe2de_rms_gen_obj_parser is a python package to parser Age of Empires2: Definitive Edition RMS
ویژگی مقدار
سیستم عامل -
نام فایل aoe2de-rms-gen-obj-parser-2.1.1
نام aoe2de-rms-gen-obj-parser
نسخه کتابخانه 2.1.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Grégoire Fruleux
ایمیل نویسنده gregoire.fruleux.pro@gmail.com
آدرس صفحه اصلی https://github.com/gfruleux/aoe2de_rms_genobj_parser
آدرس اینترنتی https://pypi.org/project/aoe2de-rms-gen-obj-parser/
مجوز MIT
Age of Empires 2: Definitive Edition RandomMapScript GeneratingObjects Parser ############################################################################# Parser to extract, from AoE2 DE GeneratingObjects.inc file, the code that would be produced when ran with the constants contained in the RandomMapScript files Installation ============ .. code-block:: bash pip install aoe2de_rms_gen_obj_parser Basic usage =========== .. code-block:: python from aoe2de_rms_gen_obj_parser import GeneratingObjectsParser # We instantiate the GeneratingObjectsParser parser = GeneratingObjectsParser("Path/to/GeneratingObjects.inc", "Path/to/SomeRandomMapScript.rms") # We must run the parsers each time an attribute is set, in order to update them parser.run_parsers() # We can now get the result for the parsing (done on the fly, that's why we must use run_parsers() first parsed_content = parser.get_result() Advanced Usage ============== The class GeneratingObjectsParser can be instantiate with up to 5 arguments. Two are <<mandatory>> *(they won't have default values)*: * ``path_gen_obj``, the path of the GeneratingObjects.inc file * ``path_rms_file``, the path of the .rms file *(like Arabia.rms, Arena.rms ...)* The three others are <<optional>> *(they have default values)* but must respect defined values: * ``map_size``, **must be a key of** ``aoe2de_rms_gen_obj_parser.const.MAP_SIZE_DICT`` * ``map_resources``, **must be a key of** ``aoe2de_rms_gen_obj_parser.const.MAP_RESOURCES_DICT`` * ``game_type``, **must be a key of** ``aoe2de_rms_gen_obj_parser.const.GAME_TYPE_DICT`` By default, these are set to ``TINY_MAP``, ``OTHER_RESOURCES`` and ``OTHER_GAME`` Because the attributes can be changed at will *(setters exposed)*, the files must be parsed first with ``run_parsers()`` before asking for a result with ``get_result()`` .. code-block:: python from aoe2de_rms_gen_obj_parser import GeneratingObjectsParser # We instantiate the GeneratingObjectsParser parser = GeneratingObjectsParser() ... <some code> parser.set_path_gen_obj("Path/to/GeneratingObjects.inc") parser.set_path_rms_file("Path/to/SomeRandomMapScript.rms") ... <some code> parser.set_map_size("LARGE_MAP") parser.run_parsers() parsed_content = parser.get_result() Information about **GeneratingObjects.inc** ==================================================== * Contains the code for the map objects generation, from buildings, to resources, with units and some terrains, such as Town Centers, Villagers, Scouts, Stones, Golds, Huntables, Lurables ... * The previous code is encapsulated in various ``if, elseif, else`` statements. Omitting ``else``, they will have their corresponding constraint on a constant defined elsewhere *(the .rms files)* Information about **RandomMapScript.rms** ================================================== * Define base Land and Terrain * Define seasons if needed/wanted * Define the constants used by the GeneratingObjects.inc file


نیازمندی

مقدار نام
- requests


زبان مورد نیاز

مقدار نام
>=3.8.1 Python


نحوه نصب


نصب پکیج whl aoe2de-rms-gen-obj-parser-2.1.1:

    pip install aoe2de-rms-gen-obj-parser-2.1.1.whl


نصب پکیج tar.gz aoe2de-rms-gen-obj-parser-2.1.1:

    pip install aoe2de-rms-gen-obj-parser-2.1.1.tar.gz