No project description provided
Project description
rwmapeditor-exgcdwu
一个铁锈战争 (Rusted Warfare) 地图编辑 python 库
目标
python实现铁锈地图文件地块编辑和宾语编辑。
暂时不打算接触地块集。
重点减轻城市争夺地图的宾语编辑工作量
基本框架已完成。
地块组框架已完成。
安装
pip install rwmapeditor-exgcdwu
使用之前
1.使用地图编辑器(Tiled,notTiled)创建新地图,确定大小。
2.手动载入地块集
3.手动创建所需的地块层和宾语层
4.即可使用python库自动改变地块和宾语
简易使用例子
# coding: utf-8
import rwmap as rw
map_dir = 'D:/Game/steam/steamapps/common/Rusted Warfare/mods/maps/'
map_name = '[p2]example_skirmish_(2p).tmx'
map_name_out = '[p2]example_skirmish_(2p)(1).tmx'
mygraph:rw.RWmap = rw.RWmap.init_mapfile(map_dir + map_name, map_dir)
print(mygraph)
mygraph.addObject(
"Triggers",
{"id": "100", "name": "刷兵实验", "type": "unitAdd", "x": "1500", "y":"1000", "width": "20", "height": "20"},
{"resetActivationAfter":"5s", "spawnUnits": "heavyTank*10", "team" :"0", "warmup":"5s"})
mygraph.addTile("Ground", rw.Coordinate(1, 0), "Long Grass", rw.Coordinate(0, 0))
mygraph.addTile("Ground", rw.Coordinate(2, 0), "Long Grass", rw.Coordinate(0, 0))
mygraph.addTile("Ground", rw.Coordinate(0, 1), "Long Grass", rw.Coordinate(0, 0))
mygraph.addTile_square("Ground", rw.Rectangle(rw.Coordinate(5, 5), rw.Coordinate(10, 10)), "Deep Water", rw.Coordinate(0, 0))
mygraph.addTile_group(rw.Coordinate(5, 20), rw.data.tile_group_grid.fill_tile_group_one_ground_water_28_24)
mygraph.write_file(map_dir + map_name_out)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rwmapeditor_exgcdwu-1.2.0.tar.gz
(24.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rwmapeditor_exgcdwu-1.2.0.tar.gz.
File metadata
- Download URL: rwmapeditor_exgcdwu-1.2.0.tar.gz
- Upload date:
- Size: 24.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
096f9858e0ff97e6c0cd814b9118ccfd4d657036edb34a9baf2163c916710c79
|
|
| MD5 |
aef17a11d92ef7ddf4d475550be38a85
|
|
| BLAKE2b-256 |
887340145b3f853e131cb4293974f1caddc9efb67f13f4128d93ceb5d4537e19
|
File details
Details for the file rwmapeditor_exgcdwu-1.2.0-py3-none-any.whl.
File metadata
- Download URL: rwmapeditor_exgcdwu-1.2.0-py3-none-any.whl
- Upload date:
- Size: 30.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03fe49855f51ba2e94593b1bde681ce76c33f9d320c3869b8b01010d9649cbae
|
|
| MD5 |
84432246e820223462611bc7851ef277
|
|
| BLAKE2b-256 |
c44b72070e5ec033f030f953d7e82736f82b26348933ad0ea2682b7b9191e128
|