diff --git a/assets/audio/sfx/launch-intro.mp3 b/assets/audio/sfx/launch-intro.mp3 new file mode 100644 index 0000000..94d863b Binary files /dev/null and b/assets/audio/sfx/launch-intro.mp3 differ diff --git a/assets/translations/en-US.json b/assets/translations/en-US.json index e5b9440..d0fb69c 100644 --- a/assets/translations/en-US.json +++ b/assets/translations/en-US.json @@ -935,5 +935,7 @@ "punishmentModerator": "Moderator who made this punishment", "punishmentMadeBySystem": "Made by auto-mod system", "settingsAprilFoolFeatures": "April Fool Features", - "settingsAprilFoolFeaturesDescription": "Enable April Fool features during April Fool, this option will only be visible during April Fool." + "settingsAprilFoolFeaturesDescription": "Enable April Fool features during April Fool, this option will only be visible during April Fool.", + "settingsSoundEffects": "Sound Effects", + "settingsSoundEffectsDescription": "Enable the sound effects around the app." } diff --git a/assets/translations/zh-CN.json b/assets/translations/zh-CN.json index cfb9009..598744f 100644 --- a/assets/translations/zh-CN.json +++ b/assets/translations/zh-CN.json @@ -932,5 +932,7 @@ "punishmentModerator": "责任管理员", "punishmentMadeBySystem": "由系统自动裁决", "settingsAprilFoolFeatures": "愚人节特性", - "settingsAprilFoolFeaturesDescription": "在愚人节期间启用愚人节特性,该选项只会在愚人节期间显示。" + "settingsAprilFoolFeaturesDescription": "在愚人节期间启用愚人节特性,该选项只会在愚人节期间显示。", + "settingsSoundEffects": "声音效果", + "settingsSoundEffectsDescription": "在一些场合下启用声音特效。" } diff --git a/lib/main.dart b/lib/main.dart index 7daf734..1eb066a 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -3,6 +3,7 @@ import 'dart:developer'; import 'dart:io'; import 'dart:ui'; +import 'package:audioplayers/audioplayers.dart'; import 'package:bitsdojo_window/bitsdojo_window.dart'; import 'package:croppy/croppy.dart'; import 'package:dio/dio.dart'; @@ -345,6 +346,7 @@ class _AppSplashScreenState extends State<_AppSplashScreen> with TrayListener { final ct = context.read(); await ct.refreshAvailableChannels(); _setPhaseText('done'); + _playIntro(); } } catch (err) { if (!mounted) return; @@ -361,6 +363,17 @@ class _AppSplashScreenState extends State<_AppSplashScreen> with TrayListener { // The quit key has been removed, and the logic of the quit key is moved to system menu bar activator. } + void _playIntro() async { + final cfg = context.read(); + if (!cfg.soundEffects) return; + + final player = AudioPlayer(playerId: 'launch-intro-player'); + await player.play(AssetSource('audio/sfx/launch-intro.mp3'), volume: 0.5); + player.onPlayerComplete.listen((_) { + player.dispose(); + }); + } + final Menu _appTrayMenu = Menu( items: [ MenuItem(key: 'version_label', label: 'Solian', disabled: true), diff --git a/lib/providers/config.dart b/lib/providers/config.dart index df950e4..85fd88e 100644 --- a/lib/providers/config.dart +++ b/lib/providers/config.dart @@ -22,6 +22,7 @@ const kAppCustomFonts = 'app_custom_fonts'; const kAppMixedFeed = 'app_mixed_feed'; const kAppAutoTranslate = 'app_auto_translate'; const kAppHideBottomNav = 'app_hide_bottom_nav'; +const kAppSoundEffects = 'app_sound_effects'; const kAppAprilFoolFeatures = 'app_april_fool_features'; const Map kImageQualityLevel = { @@ -101,6 +102,15 @@ class ConfigProvider extends ChangeNotifier { return prefs.getBool(kAppAprilFoolFeatures) ?? true; } + bool get soundEffects { + return prefs.getBool(kAppSoundEffects) ?? true; + } + + set soundEffects(bool value) { + prefs.setBool(kAppSoundEffects, value); + notifyListeners(); + } + set aprilFoolFeatures(bool value) { prefs.setBool(kAppAprilFoolFeatures, value); notifyListeners(); diff --git a/lib/screens/settings.dart b/lib/screens/settings.dart index cce8912..e790800 100644 --- a/lib/screens/settings.dart +++ b/lib/screens/settings.dart @@ -352,6 +352,17 @@ class _SettingsScreenState extends State { setState(() {}); }, ), + CheckboxListTile( + value: cfg.soundEffects, + onChanged: (value) { + cfg.soundEffects = value ?? false; + setState(() {}); + }, + contentPadding: const EdgeInsets.only(left: 24, right: 17), + title: Text('settingsSoundEffects').tr(), + subtitle: Text('settingsSoundEffectsDescription').tr(), + secondary: const Icon(Symbols.sound_sampler), + ), ListTile( leading: const Icon(Symbols.font_download), title: Text('settingsCustomFonts').tr(), diff --git a/pubspec.yaml b/pubspec.yaml index af087d3..c01dd53 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -181,6 +181,7 @@ flutter: - assets/icon/tray-icon.ico - assets/icon/tray-icon.png - assets/icon/kanban-1st.jpg + - assets/audio/sfx/ - assets/audio/notify/ - assets/translations/