rom24-quickmud-python 2.5.3__py3-none-any.whl → 2.5.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mud/__main__.py +1 -1
- mud/config.py +1 -1
- {rom24_quickmud_python-2.5.3.dist-info → rom24_quickmud_python-2.5.4.dist-info}/METADATA +7 -5
- {rom24_quickmud_python-2.5.3.dist-info → rom24_quickmud_python-2.5.4.dist-info}/RECORD +8 -8
- {rom24_quickmud_python-2.5.3.dist-info → rom24_quickmud_python-2.5.4.dist-info}/WHEEL +0 -0
- {rom24_quickmud_python-2.5.3.dist-info → rom24_quickmud_python-2.5.4.dist-info}/entry_points.txt +0 -0
- {rom24_quickmud_python-2.5.3.dist-info → rom24_quickmud_python-2.5.4.dist-info}/licenses/LICENSE +0 -0
- {rom24_quickmud_python-2.5.3.dist-info → rom24_quickmud_python-2.5.4.dist-info}/top_level.txt +0 -0
mud/__main__.py
CHANGED
mud/config.py
CHANGED
|
@@ -12,7 +12,7 @@ load_dotenv()
|
|
|
12
12
|
|
|
13
13
|
# Configuration for servers
|
|
14
14
|
DATABASE_URL = os.getenv("DATABASE_URL", "sqlite:///mud.db")
|
|
15
|
-
PORT = int(os.getenv("PORT",
|
|
15
|
+
PORT = int(os.getenv("PORT", 5001))
|
|
16
16
|
HOST = os.getenv("HOST", "0.0.0.0")
|
|
17
17
|
|
|
18
18
|
# Comma separated list of allowed CORS origins
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rom24-quickmud-python
|
|
3
|
-
Version: 2.5.
|
|
3
|
+
Version: 2.5.4
|
|
4
4
|
Summary: A modern Python port of the ROM 2.4b6 MUD engine with full telnet server and JSON world loading
|
|
5
5
|
Author-email: Mark Jedrzejczyk <mark.jedrzejczyk@gmail.com>
|
|
6
6
|
Maintainer-email: Mark Jedrzejczyk <mark.jedrzejczyk@gmail.com>
|
|
@@ -92,13 +92,15 @@ pip install quickmud
|
|
|
92
92
|
|
|
93
93
|
Run a QuickMUD server:
|
|
94
94
|
|
|
95
|
-
**Telnet Server (port
|
|
95
|
+
**Telnet Server (port 5001):**
|
|
96
96
|
```bash
|
|
97
97
|
python3 -m mud socketserver
|
|
98
98
|
# or
|
|
99
99
|
mud socketserver
|
|
100
100
|
```
|
|
101
101
|
|
|
102
|
+
> **⚠️ macOS Users:** Port 5000 is used by macOS AirPlay Receiver (Monterey+). QuickMUD defaults to port 5001 to avoid conflicts. To use a different port: `python3 -m mud socketserver --port 4000`
|
|
103
|
+
|
|
102
104
|
**WebSocket Server (port 8000):**
|
|
103
105
|
```bash
|
|
104
106
|
python3 -m mud websocketserver
|
|
@@ -122,7 +124,7 @@ Connect to the server:
|
|
|
122
124
|
|
|
123
125
|
**Via Telnet:**
|
|
124
126
|
```bash
|
|
125
|
-
telnet localhost
|
|
127
|
+
telnet localhost 5001
|
|
126
128
|
```
|
|
127
129
|
|
|
128
130
|
**Via SSH:**
|
|
@@ -263,7 +265,7 @@ Build and run the Python server with Docker:
|
|
|
263
265
|
|
|
264
266
|
```bash
|
|
265
267
|
docker build -t quickmud .
|
|
266
|
-
docker run -p
|
|
268
|
+
docker run -p 5001:5001 quickmud
|
|
267
269
|
```
|
|
268
270
|
|
|
269
271
|
Or use docker-compose to rebuild on changes and mount the repository:
|
|
@@ -275,7 +277,7 @@ docker-compose up
|
|
|
275
277
|
Connect via:
|
|
276
278
|
|
|
277
279
|
```bash
|
|
278
|
-
telnet localhost
|
|
280
|
+
telnet localhost 5001
|
|
279
281
|
```
|
|
280
282
|
|
|
281
283
|
## Data Models
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
mud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
mud/__main__.py,sha256=
|
|
2
|
+
mud/__main__.py,sha256=LfEEx3DfE91OKqwnTVrRONOvZ-8RXlVc5qYlOqvuLno,1330
|
|
3
3
|
mud/advancement.py,sha256=QWGYRv337unJIzQOupLiIEfKFBge9xvRCc4PQNc0Aq8,6218
|
|
4
|
-
mud/config.py,sha256=
|
|
4
|
+
mud/config.py,sha256=FmuhwTeR5798i_dHBJvZ_EQ4d_eNO8oMa8ni8fxiHhs,7057
|
|
5
5
|
mud/entrypoint.py,sha256=WxBW3GfbKCOtSD5rx2ccSAC7lA3YRFi7DJ_EZvi1rmo,854
|
|
6
6
|
mud/game_loop.py,sha256=uMimgn5yTGtaB--QDRHYzA-TLNvbQ27VKklS3Rnnl_8,40841
|
|
7
7
|
mud/game_tick_scheduler.py,sha256=7ybo2ekDQQPGN82u6fhcrrg7tZ-JMtGy4UUrZv9_Umo,1539
|
|
@@ -203,9 +203,9 @@ mud/world/movement.py,sha256=Y7it7pXrPORgKyy2tRB8br_kb4-s9UK-gj0N-E2U9oM,18695
|
|
|
203
203
|
mud/world/obj_find.py,sha256=SU0nkluF7dHaarlkQsRJ16JrmtzNReIBDEU7asQ4XLc,5265
|
|
204
204
|
mud/world/vision.py,sha256=M8JZbMSoSniNjuSNHsggGuiJMy-hqzqsDaPwgDaMygU,10268
|
|
205
205
|
mud/world/world_state.py,sha256=2ktEPgqzkeEzXbezKJ3n36xiAKI0aK5qrD8OKyQY73Q,8120
|
|
206
|
-
rom24_quickmud_python-2.5.
|
|
207
|
-
rom24_quickmud_python-2.5.
|
|
208
|
-
rom24_quickmud_python-2.5.
|
|
209
|
-
rom24_quickmud_python-2.5.
|
|
210
|
-
rom24_quickmud_python-2.5.
|
|
211
|
-
rom24_quickmud_python-2.5.
|
|
206
|
+
rom24_quickmud_python-2.5.4.dist-info/licenses/LICENSE,sha256=anQ2j9As6sIC8tZgQCXbo0-09JDH9vPiqhA9djnOvkY,1078
|
|
207
|
+
rom24_quickmud_python-2.5.4.dist-info/METADATA,sha256=qQqnMhmufmkR5PCIgZG5s16O3C5HY6V5tgsw9sBBxBE,12602
|
|
208
|
+
rom24_quickmud_python-2.5.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
209
|
+
rom24_quickmud_python-2.5.4.dist-info/entry_points.txt,sha256=VFru08UQTXZA_CkK-NBjJmWHyEX5a3864fQHjhaojbw,41
|
|
210
|
+
rom24_quickmud_python-2.5.4.dist-info/top_level.txt,sha256=Fk1WPmabIIjp7_iZXLYpbAVqiq7lG7TeAHt30AsOKtQ,4
|
|
211
|
+
rom24_quickmud_python-2.5.4.dist-info/RECORD,,
|
|
File without changes
|
{rom24_quickmud_python-2.5.3.dist-info → rom24_quickmud_python-2.5.4.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{rom24_quickmud_python-2.5.3.dist-info → rom24_quickmud_python-2.5.4.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{rom24_quickmud_python-2.5.3.dist-info → rom24_quickmud_python-2.5.4.dist-info}/top_level.txt
RENAMED
|
File without changes
|