forked from ss220club/BandaStation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add tts to hologram and modlink. Refactor tts related code a bit (ss2…
…20club#997) ## Что этот PR делает ТТС для голограмм и модлинков ## Summary by Sourcery Add TTS support for holograms and modlinks. New Features: - Holograms and modlinks now have text-to-speech (TTS) capabilities. Tests: - Added tests for the new TTS features.
- Loading branch information
Showing
20 changed files
with
206 additions
and
127 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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 @@ | ||
///from base of atom/change_tts_seed(): (mob/chooser, override, new_traits) | ||
///from base of atom/change_tts_seed(): (mob/chooser, override, list/new_sound_effects) | ||
#define COMSIG_ATOM_TTS_SEED_CHANGE "atom_tts_seed_change" | ||
///from base of atom/cast_tts(): (mob/listener, message, atom/location, is_local, effect, traits, preSFX, postSFX) | ||
///from base of atom/cast_tts(): (mob/listener, message, atom/location, is_local, is_radio, list/effects, traits, preSFX, postSFX) | ||
#define COMSIG_ATOM_TTS_CAST "atom_tts_cast" | ||
///from base of atom/tts_trait_add(): (trait) | ||
#define COMSIG_ATOM_TTS_TRAIT_ADD "atom_tts_trait_add" | ||
///from base of atom/tts_trait_remove(): (trait) | ||
#define COMSIG_ATOM_TTS_TRAIT_REMOVE "atom_tts_trait_remove" | ||
///from base of atom/tts_effects_add(): (trait) | ||
#define COMSIG_ATOM_TTS_EFFECTS_ADD "atom_tts_trait_add" | ||
///from base of atom/tts_effects_remove(): (trait) | ||
#define COMSIG_ATOM_TTS_EFFECTS_REMOVE "atom_tts_trait_remove" |
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
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
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
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
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
Oops, something went wrong.