✨ Weird boot sound effects
This commit is contained in:
parent
38e1c51b45
commit
4589722c3b
BIN
assets/audio/sfx/launch-intro.mp3
Normal file
BIN
assets/audio/sfx/launch-intro.mp3
Normal file
Binary file not shown.
@ -935,5 +935,7 @@
|
|||||||
"punishmentModerator": "Moderator who made this punishment",
|
"punishmentModerator": "Moderator who made this punishment",
|
||||||
"punishmentMadeBySystem": "Made by auto-mod system",
|
"punishmentMadeBySystem": "Made by auto-mod system",
|
||||||
"settingsAprilFoolFeatures": "April Fool Features",
|
"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."
|
||||||
}
|
}
|
||||||
|
@ -932,5 +932,7 @@
|
|||||||
"punishmentModerator": "责任管理员",
|
"punishmentModerator": "责任管理员",
|
||||||
"punishmentMadeBySystem": "由系统自动裁决",
|
"punishmentMadeBySystem": "由系统自动裁决",
|
||||||
"settingsAprilFoolFeatures": "愚人节特性",
|
"settingsAprilFoolFeatures": "愚人节特性",
|
||||||
"settingsAprilFoolFeaturesDescription": "在愚人节期间启用愚人节特性,该选项只会在愚人节期间显示。"
|
"settingsAprilFoolFeaturesDescription": "在愚人节期间启用愚人节特性,该选项只会在愚人节期间显示。",
|
||||||
|
"settingsSoundEffects": "声音效果",
|
||||||
|
"settingsSoundEffectsDescription": "在一些场合下启用声音特效。"
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ import 'dart:developer';
|
|||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
import 'dart:ui';
|
import 'dart:ui';
|
||||||
|
|
||||||
|
import 'package:audioplayers/audioplayers.dart';
|
||||||
import 'package:bitsdojo_window/bitsdojo_window.dart';
|
import 'package:bitsdojo_window/bitsdojo_window.dart';
|
||||||
import 'package:croppy/croppy.dart';
|
import 'package:croppy/croppy.dart';
|
||||||
import 'package:dio/dio.dart';
|
import 'package:dio/dio.dart';
|
||||||
@ -345,6 +346,7 @@ class _AppSplashScreenState extends State<_AppSplashScreen> with TrayListener {
|
|||||||
final ct = context.read<ChatChannelProvider>();
|
final ct = context.read<ChatChannelProvider>();
|
||||||
await ct.refreshAvailableChannels();
|
await ct.refreshAvailableChannels();
|
||||||
_setPhaseText('done');
|
_setPhaseText('done');
|
||||||
|
_playIntro();
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (!mounted) return;
|
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.
|
// 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<ConfigProvider>();
|
||||||
|
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(
|
final Menu _appTrayMenu = Menu(
|
||||||
items: [
|
items: [
|
||||||
MenuItem(key: 'version_label', label: 'Solian', disabled: true),
|
MenuItem(key: 'version_label', label: 'Solian', disabled: true),
|
||||||
|
@ -22,6 +22,7 @@ const kAppCustomFonts = 'app_custom_fonts';
|
|||||||
const kAppMixedFeed = 'app_mixed_feed';
|
const kAppMixedFeed = 'app_mixed_feed';
|
||||||
const kAppAutoTranslate = 'app_auto_translate';
|
const kAppAutoTranslate = 'app_auto_translate';
|
||||||
const kAppHideBottomNav = 'app_hide_bottom_nav';
|
const kAppHideBottomNav = 'app_hide_bottom_nav';
|
||||||
|
const kAppSoundEffects = 'app_sound_effects';
|
||||||
const kAppAprilFoolFeatures = 'app_april_fool_features';
|
const kAppAprilFoolFeatures = 'app_april_fool_features';
|
||||||
|
|
||||||
const Map<String, FilterQuality> kImageQualityLevel = {
|
const Map<String, FilterQuality> kImageQualityLevel = {
|
||||||
@ -101,6 +102,15 @@ class ConfigProvider extends ChangeNotifier {
|
|||||||
return prefs.getBool(kAppAprilFoolFeatures) ?? true;
|
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) {
|
set aprilFoolFeatures(bool value) {
|
||||||
prefs.setBool(kAppAprilFoolFeatures, value);
|
prefs.setBool(kAppAprilFoolFeatures, value);
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
|
@ -352,6 +352,17 @@ class _SettingsScreenState extends State<SettingsScreen> {
|
|||||||
setState(() {});
|
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(
|
ListTile(
|
||||||
leading: const Icon(Symbols.font_download),
|
leading: const Icon(Symbols.font_download),
|
||||||
title: Text('settingsCustomFonts').tr(),
|
title: Text('settingsCustomFonts').tr(),
|
||||||
|
@ -181,6 +181,7 @@ flutter:
|
|||||||
- assets/icon/tray-icon.ico
|
- assets/icon/tray-icon.ico
|
||||||
- assets/icon/tray-icon.png
|
- assets/icon/tray-icon.png
|
||||||
- assets/icon/kanban-1st.jpg
|
- assets/icon/kanban-1st.jpg
|
||||||
|
- assets/audio/sfx/
|
||||||
- assets/audio/notify/
|
- assets/audio/notify/
|
||||||
- assets/translations/
|
- assets/translations/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user