Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Upstream 10.02.2025 #1796

Merged
merged 35 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
659c4bb
Add debug research notes (#28074)
MiraHell Feb 6, 2025
f9f3b4a
Ports TG lazy-loading of map templates using turf reservations (#28101)
Contrabang Feb 7, 2025
e70f84b
Fixes Deltastation's Huge Atmospherics Power Draw (#27671)
haydenredacted Feb 7, 2025
9be5e7d
Slower plasma fire and temperature decay (#28171)
FunnyMan3595 Feb 7, 2025
2177951
stops ERT reminder from lying to us (#28291)
Coolrune206 Feb 8, 2025
5237a14
Readds Atmos freezing to loading maps (#28111)
Contrabang Feb 8, 2025
8e4dc61
Separate station/unit tests and disable lavaland procgen and ruin spa…
warriorstar-orion Feb 8, 2025
2d998b8
Cult is now part of dynamic (#28236)
Contrabang Feb 8, 2025
a432603
NanoMap Auto-Update (Sat Feb 8 01:26:58 UTC 2025) (#28288)
paradisess13[bot] Feb 8, 2025
36139a6
Better atmos init (#28274)
FunnyMan3595 Feb 8, 2025
5d32c2f
Improves runtime info during admin proc calls (#28279)
Contrabang Feb 8, 2025
efdb19a
Fix cult dynamic cost (#28304)
Contrabang Feb 9, 2025
e5f91c1
vocab: class -> type (#28289)
chuga-git Feb 9, 2025
59377ad
turn EncodeDNABlock proc into a define (#28186)
Kenionatus Feb 9, 2025
32c9d4d
Slime People and IPC; Imitating Species Cosmetically. (#27359)
Spaghetti-bit Feb 9, 2025
2ca7c0f
Fix (#28308)
Spaghetti-bit Feb 9, 2025
d9e6e40
The Great Fire Extinguisher Refactor (#28005)
Fordoxia Feb 9, 2025
670a0ba
Initial Commit (#28316)
Burzah Feb 9, 2025
4ba6266
exploit fix (#28319)
1080pCat Feb 9, 2025
313cf60
Imitation fix 2 (#28318)
Spaghetti-bit Feb 10, 2025
7da09f5
Souled belt resprite (#28278)
Bm0n Feb 10, 2025
404f11f
Feature: Clown recycler, a new Cmag effect (#28233)
Toastical Feb 10, 2025
3ff6a92
Headrev sechud is now an implant (#28230)
Contrabang Feb 10, 2025
4e7b0e6
EFTPOS in Autolathe (#28205)
FunnyMan3595 Feb 10, 2025
3ace66e
[LORE] Replaces all uses of the word "intergalactic" in code (#28203)
PopeDaveThe3th Feb 10, 2025
aa6cb23
Dynamic Mice: Let's populate maintenance randomly (#28178)
Vi3trice Feb 10, 2025
da96615
Adds medical beamgun for Odysseus (#28162)
Bm0n Feb 10, 2025
5f21e30
Adds more fire alarms to the center of the Diogaras (#28145)
Daylight2 Feb 10, 2025
c1d0884
don't spout nonsense and still make it end you when needed (#28093)
Vi3trice Feb 10, 2025
7518262
fixes blind rushers hallucination runtimes (#28084)
Toastical Feb 10, 2025
0e55808
Refactor Fire Alarm `item_interaction()` (#28136)
Fordoxia Feb 10, 2025
4b0e4b1
Merge remote-tracking branch 'origin/master' into merge-upstream
m-dzianishchyts Feb 10, 2025
dc414ad
Build Rust library
paradisess13[bot] Feb 10, 2025
e197852
Add mouse diversity
m-dzianishchyts Feb 10, 2025
67dbf16
Fix unit tests
m-dzianishchyts Feb 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 33 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,20 +99,42 @@ jobs:
tools/ci/generate_maplist.sh
DreamMaker -DMULTIINSTANCE -DCIMAP paradise.dme

station_mapload_tests:
name: Station Tests
runs-on: ubuntu-22.04
strategy:
fail-fast: false # Let all map tests run to completion
matrix:
station:
['boxstation', 'deltastation', 'metastation', 'cerestation', 'emeraldstation']
byondtype: ['STABLE', 'BETA']
steps:
- uses: actions/checkout@v4
- name: Setup Cache
uses: actions/cache@v4
with:
path: $HOME/BYOND
key: ${{ runner.os }}-byond
- name: Install RUST_G Deps
run: |
sudo dpkg --add-architecture i386
sudo apt update || true
sudo apt install zlib1g-dev:i386
tools/ci/install_rustg.sh
- name: Compile & Run Unit Tests
run: |
tools/ci/install_byond.sh '${{ matrix.byondtype }}'
source $HOME/BYOND/byond/bin/byondsetup
DreamMaker -DMAP_TESTS -DTEST_CONFIG_OVERRIDE=\"unit_tests\" -DMULTIINSTANCE -DCIBUILDING paradise.dme
echo '/datum/map/${{ matrix.station }}' > data/next_map.txt
tools/ci/run_server.sh

unit_tests_and_sql:
name: Unit Tests + SQL Validation
runs-on: ubuntu-22.04
strategy:
fail-fast: false # Let all map tests run to completion
fail-fast: false
matrix:
maptype:
[
'/datum/map/boxstation',
'/datum/map/deltastation',
'/datum/map/metastation',
'/datum/map/cerestation',
'/datum/map/emeraldstation',
]
byondtype: ['STABLE', 'BETA']
services:
mariadb:
Expand Down Expand Up @@ -144,8 +166,8 @@ jobs:
run: |
tools/ci/install_byond.sh '${{ matrix.byondtype }}'
source $HOME/BYOND/byond/bin/byondsetup
DreamMaker -DMULTIINSTANCE -DCIBUILDING paradise.dme
echo '${{ matrix.maptype }}' > data/next_map.txt
DreamMaker -DGAME_TESTS -DTEST_CONFIG_OVERRIDE=\"unit_tests\" -DMULTIINSTANCE -DCIBUILDING paradise.dme
echo '/datum/map/test_tiny' > data/next_map.txt
tools/ci/run_server.sh

windows_dll_tests:
Expand Down
1 change: 1 addition & 0 deletions SQL/paradise_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ CREATE TABLE `characters` (
`runechat_color` VARCHAR(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#FFFFFF',
`cyborg_brain_type` ENUM('MMI', 'Robobrain', 'Positronic') NOT NULL DEFAULT 'MMI',
`pda_ringtone` VARCHAR(16) NULL DEFAULT NULL COLLATE 'utf8mb3_general_ci',
`species_subtype` VARCHAR(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'None',
PRIMARY KEY (`id`),
KEY `ckey` (`ckey`)
) ENGINE=InnoDB AUTO_INCREMENT=125467 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Expand Down
5 changes: 5 additions & 0 deletions SQL/updates/63-64.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Updates the DB from 63 to 64 ~SpaghettiBit
# Adds a subtype race to be stored on character saves
# Add species_subtype after pda_ringtone
ALTER TABLE `characters`
ADD COLUMN `species_subtype` VARCHAR(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'None' AFTER `pda_ringtone`;
2 changes: 2 additions & 0 deletions _maps/__MAP_DEFINES.dm
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
#define STATION_CONTACT "Station Contact"
// A level dedicated to admin use
#define ADMIN_LEVEL "Admin Level"
// For Z-levels dedicated to auto-spawning stuff in
#define Z_FLAG_RESERVED "Reserved"
// A level that can be navigated to by the crew without admin intervention or the emergency shuttle.
#define REACHABLE_BY_CREW "Reachable"
// For away missions - used by some consoles
Expand Down
80 changes: 10 additions & 70 deletions _maps/map_files/stations/boxstation.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"aag" = (
/obj/machinery/hologram/holopad,
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plasteel,
/area/station/maintenance/incinerator)
"aah" = (
Expand Down Expand Up @@ -5887,7 +5886,6 @@
"avE" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/stack/cable_coil/random,
/mob/living/simple_animal/mouse/white,
/turf/simulated/floor/plating,
/area/station/maintenance/fpmaint)
"avF" = (
Expand Down Expand Up @@ -10098,7 +10096,6 @@
/turf/simulated/floor/plating,
/area/shuttle/pod_2)
"aJW" = (
/mob/living/simple_animal/mouse,
/obj/machinery/atmospherics/pipe/simple/hidden/cyan,
/obj/effect/mapping_helpers/turfs/damage,
/turf/simulated/floor/wood,
Expand All @@ -10109,11 +10106,6 @@
},
/turf/simulated/floor/plating,
/area/station/maintenance/fpmaint2)
"aJY" = (
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
/area/station/maintenance/fpmaint2)
"aJZ" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
Expand Down Expand Up @@ -11123,10 +11115,6 @@
},
/turf/simulated/floor/plating,
/area/station/maintenance/fsmaint)
"aNi" = (
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
/area/station/maintenance/fsmaint)
"aNj" = (
/obj/structure/table,
/turf/simulated/floor/plating,
Expand Down Expand Up @@ -12254,10 +12242,6 @@
icon_state = "arrival"
},
/area/station/hallway/secondary/entry/north)
"aRg" = (
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
/area/station/maintenance/fpmaint2)
"aRh" = (
/obj/machinery/sleeper{
dir = 4
Expand Down Expand Up @@ -21821,11 +21805,6 @@
/obj/item/storage/toolbox/emergency,
/turf/simulated/floor/plating,
/area/station/public/storage/emergency/port)
"buj" = (
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse/gray,
/turf/simulated/floor/plasteel,
/area/station/maintenance/port)
"buk" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
Expand Down Expand Up @@ -25808,10 +25787,6 @@
},
/turf/simulated/wall/r_wall,
/area/station/maintenance/port)
"bKH" = (
/mob/living/simple_animal/mouse/gray,
/turf/simulated/floor/plating,
/area/station/maintenance/port)
"bKI" = (
/obj/structure/cable{
icon_state = "0-2"
Expand Down Expand Up @@ -32451,7 +32426,6 @@
/turf/simulated/floor/plating/airless,
/area/station/science/toxins/test)
"clF" = (
/mob/living/simple_animal/mouse,
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
},
Expand Down Expand Up @@ -33633,7 +33607,6 @@
/area/station/command/office/ntrep)
"cqK" = (
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
},
Expand Down Expand Up @@ -34885,12 +34858,6 @@
/obj/item/stack/rods,
/turf/simulated/floor/plasteel,
/area/station/maintenance/apmaint)
"cvl" = (
/mob/living/simple_animal/mouse/gray,
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/plasteel,
/area/station/maintenance/port)
"cvm" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/suit_storage_unit/expedition,
Expand Down Expand Up @@ -44097,7 +44064,6 @@
/area/station/maintenance/turbine)
"dev" = (
/obj/effect/decal/cleanable/dirt,
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plasteel,
/area/station/maintenance/turbine)
"dew" = (
Expand Down Expand Up @@ -45625,10 +45591,6 @@
/obj/effect/decal/cleanable/cobweb,
/turf/simulated/floor/plating,
/area/station/maintenance/aft)
"dkv" = (
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
/area/station/maintenance/asmaint)
"dky" = (
/obj/machinery/camera{
c_tag = "Central Hallway North-East"
Expand Down Expand Up @@ -49233,10 +49195,6 @@
},
/turf/simulated/floor/plasteel,
/area/station/hallway/primary/port/east)
"egi" = (
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
/area/station/maintenance/apmaint)
"egq" = (
/obj/structure/closet/secure_closet/brig,
/obj/machinery/power/apc/directional/east,
Expand Down Expand Up @@ -53660,7 +53618,6 @@
/obj/structure/cable{
icon_state = "1-2"
},
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
/area/station/maintenance/fpmaint2)
"gsl" = (
Expand Down Expand Up @@ -71961,22 +71918,6 @@
icon_state = "caution"
},
/area/station/engineering/break_room)
"pUR" = (
/obj/machinery/atmospherics/pipe/simple/hidden/cyan{
dir = 4
},
/obj/structure/cable{
icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/hidden/supply{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
dir = 4
},
/mob/living/simple_animal/mouse,
/turf/simulated/floor/plating,
/area/station/maintenance/asmaint2)
"pUU" = (
/obj/structure/filingcabinet,
/turf/simulated/floor/carpet,
Expand Down Expand Up @@ -80364,7 +80305,6 @@
},
/area/station/maintenance/asmaint)
"uql" = (
/mob/living/simple_animal/mouse,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
Expand Down Expand Up @@ -101858,7 +101798,7 @@ nxX
aGn
aPW
aQb
aRg
aHS
aHl
aGn
rPS
Expand Down Expand Up @@ -103391,7 +103331,7 @@ bat
aDA
aEH
aEJ
aJY
aHl
aIK
aGn
aHS
Expand Down Expand Up @@ -103423,7 +103363,7 @@ blM
bvq
cho
bwZ
cvl
pcH
bCr
pwm
cwA
Expand Down Expand Up @@ -106994,7 +106934,7 @@ aaa
aaa
loS
dEG
aRg
aHS
vbm
aJX
jQt
Expand Down Expand Up @@ -108053,7 +107993,7 @@ bnK
bnK
cJV
blQ
bKH
bnK
bxb
bIX
bQf
Expand Down Expand Up @@ -111127,7 +111067,7 @@ bkg
blX
blQ
bsR
buj
svp
bvw
bDJ
blQ
Expand Down Expand Up @@ -111674,7 +111614,7 @@ bBf
wrU
nIY
cqs
egi
coL
xxQ
omB
coL
Expand Down Expand Up @@ -131409,7 +131349,7 @@ aGX
aQI
aGY
aGX
aNi
aGY
aGY
aGX
aGX
Expand Down Expand Up @@ -132253,7 +132193,7 @@ bGG
qZN
oyY
oyY
pUR
upd
bGG
qZN
dQM
Expand Down Expand Up @@ -137415,7 +137355,7 @@ cNq
cga
ePu
ePu
dkv
csL
isD
csL
jPw
Expand Down
Loading