Skip to content

Commit

Permalink
Updates auxmos, HOPEFULLY for good this time
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Dec 6, 2023
1 parent 56e78dc commit 7c04354
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
Binary file modified auxmos.dll
Binary file not shown.
28 changes: 14 additions & 14 deletions code/__HELPERS/bindings.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@

#define AUXMOS (__auxmos || __detect_auxmos())

/proc/finalize_gas_refs()
return call_ext(AUXMOS, "byond:finalize_gas_refs_ffi")()

/datum/controller/subsystem/air/proc/auxtools_update_reactions()
return call_ext(AUXMOS, "byond:update_reactions_ffi")()

/proc/auxtools_atmos_init(gas_data)
return call_ext(AUXMOS, "byond:hook_init_ffi")(gas_data)

/proc/_auxtools_register_gas(gas)
return call_ext(AUXMOS, "byond:hook_register_gas_ffi")(gas)

/datum/gas_mixture/proc/__auxtools_parse_gas_string(string)
return call_ext(AUXMOS, "byond:parse_gas_string_ffi")(src, string)

Expand Down Expand Up @@ -150,9 +162,6 @@
/proc/process_atmos_callbacks(remaining)
return call_ext(AUXMOS, "byond:atmos_callback_handle_ffi")(remaining)

/proc/__auxmos_shutdown()
return call_ext(AUXMOS, "byond:auxmos_shutdown_ffi")()

/datum/controller/subsystem/air/proc/process_turfs_auxtools(remaining)
return call_ext(AUXMOS, "byond:process_turf_hook_ffi")(src, remaining)

Expand All @@ -174,15 +183,6 @@
/turf/proc/update_air_ref(flag)
return call_ext(AUXMOS, "byond:hook_register_turf_ffi")(src, flag)

/proc/finalize_gas_refs()
return call_ext(AUXMOS, "byond:finalize_gas_refs_ffi")()

/datum/controller/subsystem/air/proc/auxtools_update_reactions()
return call_ext(AUXMOS, "byond:update_reactions_ffi")()

/proc/auxtools_atmos_init(gas_data)
return call_ext(AUXMOS, "byond:hook_init_ffi")(gas_data)

/proc/_auxtools_register_gas(gas)
return call_ext(AUXMOS, "byond:hook_register_gas_ffi")(gas)
/proc/__auxmos_shutdown()
return call_ext(AUXMOS, "byond:auxmos_shutdown_ffi")()

2 changes: 1 addition & 1 deletion dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ export PYTHON_VERSION=3.7.9
export AUXMOS_REPO=https://github.com/Putnam3145/auxmos

#auxmos version
export AUXMOS_VERSION=ee3a96c6645326bee6e332ffc859b786e71e05a8
export AUXMOS_VERSION=a134e848365d0cf2c1e60ee9b97dc16ed7262bb6

0 comments on commit 7c04354

Please sign in to comment.