-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f27cc84
commit f0922eb
Showing
33 changed files
with
6,934 additions
and
6,934 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
{ | ||
"documentation": "/tg/station server 3 configuration file", | ||
"changelog": { | ||
"script": "tools/ss13_genchangelog.py", | ||
"arguments": "html/changelog.html html/changelogs", | ||
"pip_dependancies": [ | ||
"PyYaml", | ||
"beautifulsoup4" | ||
] | ||
}, | ||
"synchronize_paths": [ | ||
"html/changelog.html", | ||
"html/changelogs/*" | ||
], | ||
"static_directories": [ | ||
"config", | ||
"data" | ||
], | ||
"dlls": [ | ||
"libmariadb.dll" | ||
] | ||
} | ||
{ | ||
"documentation": "/tg/station server 3 configuration file", | ||
"changelog": { | ||
"script": "tools/ss13_genchangelog.py", | ||
"arguments": "html/changelog.html html/changelogs", | ||
"pip_dependancies": [ | ||
"PyYaml", | ||
"beautifulsoup4" | ||
] | ||
}, | ||
"synchronize_paths": [ | ||
"html/changelog.html", | ||
"html/changelogs/*" | ||
], | ||
"static_directories": [ | ||
"config", | ||
"data" | ||
], | ||
"dlls": [ | ||
"libmariadb.dll" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"map_name": "Runtime Station", | ||
"map_path": "map_files/debug", | ||
"map_file": "runtimestation.dmm", | ||
"shuttles": { | ||
"cargo": "cargo_delta" | ||
} | ||
} | ||
{ | ||
"map_name": "Runtime Station", | ||
"map_path": "map_files/debug", | ||
"map_file": "runtimestation.dmm", | ||
"shuttles": { | ||
"cargo": "cargo_delta" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
#!/usr/bin/env python3 | ||
from config import * | ||
import sys | ||
import pickle | ||
import socket | ||
|
||
|
||
def pack(): | ||
ip = sys.argv[1] | ||
try: | ||
data = sys.argv[2:] | ||
except: | ||
data = "NO DATA SPECIFIED" | ||
|
||
nudge(pickle.dumps({"ip": ip, "data": data})) | ||
|
||
|
||
def nudge(data): | ||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | ||
s.connect(("localhost", 45678)) | ||
s.send(data) | ||
s.close() | ||
|
||
if __name__ == "__main__" and len(sys.argv) > 1: | ||
pack() | ||
#!/usr/bin/env python3 | ||
from config import * | ||
import sys | ||
import pickle | ||
import socket | ||
|
||
|
||
def pack(): | ||
ip = sys.argv[1] | ||
try: | ||
data = sys.argv[2:] | ||
except: | ||
data = "NO DATA SPECIFIED" | ||
|
||
nudge(pickle.dumps({"ip": ip, "data": data})) | ||
|
||
|
||
def nudge(data): | ||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | ||
s.connect(("localhost", 45678)) | ||
s.send(data) | ||
s.close() | ||
|
||
if __name__ == "__main__" and len(sys.argv) > 1: | ||
pack() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# Datum Component System (DCS) | ||
|
||
## Concept | ||
|
||
Loosely adapted from /vg/. This is an entity component system for adding behaviours to datums when inheritance doesn't quite cut it. By using signals and events instead of direct inheritance, you can inject behaviours without hacky overloads. It requires a different method of thinking, but is not hard to use correctly. If a behaviour can have application across more than one thing. Make it generic, make it a component. Atom/mob/obj event? Give it a signal, and forward it's arguments with a `SendSignal()` call. Now every component that want's to can also know about this happening. | ||
|
||
See [this thread](https://tgstation13.org/phpBB/viewtopic.php?f=5&t=22674) for an introduction to the system as a whole. | ||
|
||
### See/Define signals and their arguments in [__DEFINES\components.dm](..\..\__DEFINES\components.dm) | ||
# Datum Component System (DCS) | ||
|
||
## Concept | ||
|
||
Loosely adapted from /vg/. This is an entity component system for adding behaviours to datums when inheritance doesn't quite cut it. By using signals and events instead of direct inheritance, you can inject behaviours without hacky overloads. It requires a different method of thinking, but is not hard to use correctly. If a behaviour can have application across more than one thing. Make it generic, make it a component. Atom/mob/obj event? Give it a signal, and forward it's arguments with a `SendSignal()` call. Now every component that want's to can also know about this happening. | ||
|
||
See [this thread](https://tgstation13.org/phpBB/viewtopic.php?f=5&t=22674) for an introduction to the system as a whole. | ||
|
||
### See/Define signals and their arguments in [__DEFINES\components.dm](..\..\__DEFINES\components.dm) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## Custom antag reputation values | ||
## List of job titles followed by antag rep value, all prefixed with ANTAG_REP. See code/modules/jobs/job_types for titles | ||
## e.g. | ||
## ANTAG_REP Captain 10 | ||
## ANTAG_REP Assistant 0 | ||
## Custom antag reputation values | ||
## List of job titles followed by antag rep value, all prefixed with ANTAG_REP. See code/modules/jobs/job_types for titles | ||
## e.g. | ||
## ANTAG_REP Captain 10 | ||
## ANTAG_REP Assistant 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
## Communication key for receiving data through world/Topic(), you don't want to give this out | ||
#COMMS_KEY default_pwd | ||
## World address and port for server recieving cross server messages | ||
## Use '+' to denote spaces in ServerName | ||
## Repeat this entry to add more servers | ||
#CROSS_SERVER ServerName byond:\\address:port | ||
## Name that the server calls itself in communications | ||
#CROSS_COMMS_NAME | ||
## Hub address for tracking stats | ||
## example: Hubmakerckey.Hubname | ||
#MEDAL_HUB_ADDRESS | ||
## Password for the hub page | ||
## Communication key for receiving data through world/Topic(), you don't want to give this out | ||
#COMMS_KEY default_pwd | ||
|
||
## World address and port for server recieving cross server messages | ||
## Use '+' to denote spaces in ServerName | ||
## Repeat this entry to add more servers | ||
#CROSS_SERVER ServerName byond:\\address:port | ||
|
||
## Name that the server calls itself in communications | ||
#CROSS_COMMS_NAME | ||
|
||
## Hub address for tracking stats | ||
## example: Hubmakerckey.Hubname | ||
#MEDAL_HUB_ADDRESS | ||
|
||
## Password for the hub page | ||
#MEDAL_HUB_PASSWORD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
.top{font-family:Tahoma,sans-serif;font-size:12px;} | ||
h2{font-family:Tahoma,sans-serif;} | ||
a img {border:none;} | ||
.bgimages16 li { | ||
padding:2px 10px 2px 30px; | ||
background-position:6px center; | ||
background-repeat:no-repeat; | ||
border:1px solid #ddd; | ||
border-left:4px solid #999; | ||
margin-bottom:2px; | ||
} | ||
.bugfix {background-image:url(bug-minus.png)} | ||
.wip {background-image:url(hard-hat-exclamation.png)} | ||
.tweak {background-image:url(wrench-screwdriver.png)} | ||
.soundadd {background-image:url(music-plus.png)} | ||
.sounddel {background-image:url(music-minus.png)} | ||
.rscdel {background-image:url(cross-circle.png)} | ||
.rscadd {background-image:url(tick-circle.png)} | ||
.imageadd {background-image:url(image-plus.png)} | ||
.imagedel {background-image:url(image-minus.png)} | ||
.spellcheck {background-image:url(spell-check.png)} | ||
.experiment {background-image:url(burn-exclamation.png)} | ||
.refactor {background-image:url(burn-exclamation.png)} | ||
.code_imp {background-image:url(coding.png)} | ||
.config {background-image:url(chrome-wrench.png)} | ||
.admin {background-image:url(ban.png)} | ||
.server {background-image:url(hard-hat-exclamation.png)} | ||
.balance {background-image:url(scales.png)} | ||
.sansserif {font-family:Tahoma,sans-serif;font-size:12px;} | ||
.commit {margin-bottom:20px;font-size:100%;font-weight:normal;} | ||
.changes {list-style:none;margin:5px 0;padding:0 0 0 25px;font-size:0.8em;} | ||
.date {margin:10px 0;color:blue;border-bottom:2px solid #00f;width:60%;padding:2px 0;font-size:1em;font-weight:bold;} | ||
.author {padding-left:10px;margin:0;font-weight:bold;font-size:0.9em;} | ||
.drop {cursor:pointer;border:1px solid #999;display:inline;font-size:0.9em;padding:1px 20px 1px 5px;line-height:16px;} | ||
.hidden {display:none;} | ||
.indrop {margin:2px 0 0 0;clear:both;background:#fff;border:1px solid #ddd;padding:5px 10px;} | ||
.indrop p {margin:0;font-size:0.8em;line-height:16px;margin:1px 0;} | ||
.indrop img {margin-right:5px;vertical-align:middle;} | ||
.closed {background:url(chevron-expand.png) right center no-repeat;} | ||
.open {background:url(chevron.png) right center no-repeat;} | ||
.lic {font-size:9px;} | ||
.top{font-family:Tahoma,sans-serif;font-size:12px;} | ||
h2{font-family:Tahoma,sans-serif;} | ||
a img {border:none;} | ||
.bgimages16 li { | ||
padding:2px 10px 2px 30px; | ||
background-position:6px center; | ||
background-repeat:no-repeat; | ||
border:1px solid #ddd; | ||
border-left:4px solid #999; | ||
margin-bottom:2px; | ||
} | ||
.bugfix {background-image:url(bug-minus.png)} | ||
.wip {background-image:url(hard-hat-exclamation.png)} | ||
.tweak {background-image:url(wrench-screwdriver.png)} | ||
.soundadd {background-image:url(music-plus.png)} | ||
.sounddel {background-image:url(music-minus.png)} | ||
.rscdel {background-image:url(cross-circle.png)} | ||
.rscadd {background-image:url(tick-circle.png)} | ||
.imageadd {background-image:url(image-plus.png)} | ||
.imagedel {background-image:url(image-minus.png)} | ||
.spellcheck {background-image:url(spell-check.png)} | ||
.experiment {background-image:url(burn-exclamation.png)} | ||
.refactor {background-image:url(burn-exclamation.png)} | ||
.code_imp {background-image:url(coding.png)} | ||
.config {background-image:url(chrome-wrench.png)} | ||
.admin {background-image:url(ban.png)} | ||
.server {background-image:url(hard-hat-exclamation.png)} | ||
.balance {background-image:url(scales.png)} | ||
.sansserif {font-family:Tahoma,sans-serif;font-size:12px;} | ||
.commit {margin-bottom:20px;font-size:100%;font-weight:normal;} | ||
.changes {list-style:none;margin:5px 0;padding:0 0 0 25px;font-size:0.8em;} | ||
.date {margin:10px 0;color:blue;border-bottom:2px solid #00f;width:60%;padding:2px 0;font-size:1em;font-weight:bold;} | ||
.author {padding-left:10px;margin:0;font-weight:bold;font-size:0.9em;} | ||
.drop {cursor:pointer;border:1px solid #999;display:inline;font-size:0.9em;padding:1px 20px 1px 5px;line-height:16px;} | ||
.hidden {display:none;} | ||
.indrop {margin:2px 0 0 0;clear:both;background:#fff;border:1px solid #ddd;padding:5px 10px;} | ||
.indrop p {margin:0;font-size:0.8em;line-height:16px;margin:1px 0;} | ||
.indrop img {margin-right:5px;vertical-align:middle;} | ||
.closed {background:url(chevron-expand.png) right center no-repeat;} | ||
.open {background:url(chevron.png) right center no-repeat;} | ||
.lic {font-size:9px;} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
distressed_cat.ogg from Cat annoyed meow / wail by jbierfeldt at https://freesound.org/people/jbierfeldt/sounds/440735/, chopped up and ogged | ||
distressed_cat.ogg from Cat annoyed meow / wail by jbierfeldt at https://freesound.org/people/jbierfeldt/sounds/440735/, chopped up and ogged | ||
cat_puking.ogg from catpuking mp3 by NoiseCollector and Mocha the cat at https://freesound.org/people/NoiseCollector/sounds/80778/, chopped up, volume altered and ogged |
Oops, something went wrong.