@@ -29,4 +29,20 @@ package net.runelite.api;
|
|||||||
*/
|
*/
|
||||||
public class ParamID
|
public class ParamID
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* @see SettingID
|
||||||
|
*/
|
||||||
|
public static final int SETTING_ID = 1077;
|
||||||
|
// defaults to 5
|
||||||
|
// 1 is continuous
|
||||||
|
public static final int SETTING_SLIDER_STEPS = 1101;
|
||||||
|
public static final int SETTING_CUSTOM_TRANSMIT = 1085;
|
||||||
|
// defaults to true
|
||||||
|
// track is foreground
|
||||||
|
public static final int SETTING_FOREGROUND_CLICKZONE = 1105;
|
||||||
|
public static final int SETTING_SLIDER_CUSTOM_ONOP = 1106;
|
||||||
|
public static final int SETTING_SLIDER_CUSTOM_SETPOS = 1107;
|
||||||
|
public static final int SETTING_SLIDER_IS_DRAGGABLE = 1108;
|
||||||
|
public static final int SETTING_SLIDER_DEADZONE = 1109;
|
||||||
|
public static final int SETTING_SLIDER_DEADTIME = 1110;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -303,4 +303,21 @@ public final class ScriptID
|
|||||||
*/
|
*/
|
||||||
@ScriptArguments(integer = 18)
|
@ScriptArguments(integer = 18)
|
||||||
public static final int BANKMAIN_SEARCH_TOGGLE = 281;
|
public static final int BANKMAIN_SEARCH_TOGGLE = 281;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Chooses the click handler for a {@link ParamID#SETTING_SLIDER_CUSTOM_ONOP} = 1 settings slider
|
||||||
|
*
|
||||||
|
* The active widget is set to the track created by {@link ParamID#SETTING_FOREGROUND_CLICKZONE}
|
||||||
|
* <ul>
|
||||||
|
* <li>int {@link ParamID#SETTING_ID}</li>
|
||||||
|
* <li>int (WidgetID) Slider handle ID</li>
|
||||||
|
* <li>int (widget index) Slider handle index</li>
|
||||||
|
* <li>int track width</li>
|
||||||
|
* <li>int y offset</li>
|
||||||
|
* <li>int x offset</li>
|
||||||
|
* <li>int (WidgetID) drag parent</li>
|
||||||
|
* </ul>
|
||||||
|
*/
|
||||||
|
@ScriptArguments(integer = 6)
|
||||||
|
public static final int SETTINGS_SLIDER_CHOOSE_ONOP = 3885;
|
||||||
}
|
}
|
||||||
35
runelite-api/src/main/java/net/runelite/api/SettingID.java
Normal file
35
runelite-api/src/main/java/net/runelite/api/SettingID.java
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020 Abex
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||||
|
* list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||||
|
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
package net.runelite.api;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see ParamID#SETTING_ID
|
||||||
|
*/
|
||||||
|
public class SettingID
|
||||||
|
{
|
||||||
|
public static final int MUSIC_VOLUME = 30;
|
||||||
|
public static final int EFFECT_VOLUME = 31;
|
||||||
|
public static final int AREA_VOLUME = 32;
|
||||||
|
}
|
||||||
@@ -1591,4 +1591,8 @@ public final class SpriteID
|
|||||||
public static final int FRIENDS_CHAT_RANK_TRIPLE_CHEVRON_SERGEANT = 2831;
|
public static final int FRIENDS_CHAT_RANK_TRIPLE_CHEVRON_SERGEANT = 2831;
|
||||||
public static final int FRIENDS_CHAT_RANK_DOUBLE_CHEVRON_CORPORAL = 2832;
|
public static final int FRIENDS_CHAT_RANK_DOUBLE_CHEVRON_CORPORAL = 2832;
|
||||||
public static final int FRIENDS_CHAT_RANK_SINGLE_CHEVRON_RECRUIT = 2833;
|
public static final int FRIENDS_CHAT_RANK_SINGLE_CHEVRON_RECRUIT = 2833;
|
||||||
|
|
||||||
|
public static final int SETTINGS_SLIDER_HANDLE_BLUE = 2858;
|
||||||
|
public static final int SETTINGS_SLIDER_HANDLE_RED = 2859;
|
||||||
|
public static final int SETTINGS_SLIDER_HANDLE_GREEN = 2860;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,4 +31,7 @@ package net.runelite.api;
|
|||||||
*/
|
*/
|
||||||
public class StructID
|
public class StructID
|
||||||
{
|
{
|
||||||
|
public static final int SETTINGS_MUSIC_VOLUME = 2753;
|
||||||
|
public static final int SETTINGS_EFFECT_VOLUME = 2754;
|
||||||
|
public static final int SETTINGS_AREA_VOLUME = 2755;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -572,6 +572,13 @@ public enum Varbits
|
|||||||
LEAGUE_RELIC_5(10053),
|
LEAGUE_RELIC_5(10053),
|
||||||
LEAGUE_RELIC_6(11696),
|
LEAGUE_RELIC_6(11696),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Muted volume restore values
|
||||||
|
*/
|
||||||
|
MUTED_MUSIC_VOLUME(9666),
|
||||||
|
MUTED_SOUND_EFFECT_VOLUME(9674),
|
||||||
|
MUTED_AREA_EFFECT_VOLUME(9675),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the Special Attack orb is disabled due to being in a PvP area
|
* Whether the Special Attack orb is disabled due to being in a PvP area
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -610,6 +610,7 @@ public class WidgetID
|
|||||||
static final int ROLE_SPRITE = 11;
|
static final int ROLE_SPRITE = 11;
|
||||||
static final int ROLE = 12;
|
static final int ROLE = 12;
|
||||||
}
|
}
|
||||||
|
|
||||||
static class HLR
|
static class HLR
|
||||||
{
|
{
|
||||||
static final int TEAMMATE1 = 18;
|
static final int TEAMMATE1 = 18;
|
||||||
@@ -617,6 +618,7 @@ public class WidgetID
|
|||||||
static final int TEAMMATE3 = 26;
|
static final int TEAMMATE3 = 26;
|
||||||
static final int TEAMMATE4 = 30;
|
static final int TEAMMATE4 = 30;
|
||||||
}
|
}
|
||||||
|
|
||||||
static final int CORRECT_STYLE = 3;
|
static final int CORRECT_STYLE = 3;
|
||||||
static final int CURRENT_WAVE_WIDGET = 4;
|
static final int CURRENT_WAVE_WIDGET = 4;
|
||||||
static final int CURRENT_WAVE = 5;
|
static final int CURRENT_WAVE = 5;
|
||||||
@@ -839,6 +841,7 @@ public class WidgetID
|
|||||||
static final int MEMBERS_CONTAINER = 7;
|
static final int MEMBERS_CONTAINER = 7;
|
||||||
static final int MINIQUEST_CONTAINER = 8;
|
static final int MINIQUEST_CONTAINER = 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
static class Music
|
static class Music
|
||||||
{
|
{
|
||||||
static final int CONTAINER = 0;
|
static final int CONTAINER = 0;
|
||||||
@@ -884,6 +887,14 @@ public class WidgetID
|
|||||||
static class SettingsSide
|
static class SettingsSide
|
||||||
{
|
{
|
||||||
static final int CAMERA_ZOOM_SLIDER_HANDLE = 55;
|
static final int CAMERA_ZOOM_SLIDER_HANDLE = 55;
|
||||||
|
static final int MUSIC_SLIDER = 10;
|
||||||
|
static final int SOUND_EFFECT_SLIDER = 14;
|
||||||
|
static final int AREA_SOUND_SLIDER = 18;
|
||||||
|
}
|
||||||
|
|
||||||
|
static class Settings
|
||||||
|
{
|
||||||
|
static final int INIT = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static class AchievementDiary
|
static class AchievementDiary
|
||||||
|
|||||||
@@ -533,6 +533,11 @@ public enum WidgetInfo
|
|||||||
SEED_VAULT_INVENTORY_ITEMS_CONTAINER(WidgetID.SEED_VAULT_INVENTORY_GROUP_ID, WidgetID.SeedVault.INVENTORY_ITEM_CONTAINER),
|
SEED_VAULT_INVENTORY_ITEMS_CONTAINER(WidgetID.SEED_VAULT_INVENTORY_GROUP_ID, WidgetID.SeedVault.INVENTORY_ITEM_CONTAINER),
|
||||||
|
|
||||||
SETTINGS_SIDE_CAMERA_ZOOM_SLIDER_HANDLE(WidgetID.SETTINGS_SIDE_GROUP_ID, WidgetID.SettingsSide.CAMERA_ZOOM_SLIDER_HANDLE),
|
SETTINGS_SIDE_CAMERA_ZOOM_SLIDER_HANDLE(WidgetID.SETTINGS_SIDE_GROUP_ID, WidgetID.SettingsSide.CAMERA_ZOOM_SLIDER_HANDLE),
|
||||||
|
SETTINGS_SIDE_MUSIC_SLIDER(WidgetID.SETTINGS_SIDE_GROUP_ID, WidgetID.SettingsSide.MUSIC_SLIDER),
|
||||||
|
SETTINGS_SIDE_SOUND_EFFECT_SLIDER(WidgetID.SETTINGS_SIDE_GROUP_ID, WidgetID.SettingsSide.SOUND_EFFECT_SLIDER),
|
||||||
|
SETTINGS_SIDE_AREA_SOUND_SLIDER(WidgetID.SETTINGS_SIDE_GROUP_ID, WidgetID.SettingsSide.AREA_SOUND_SLIDER),
|
||||||
|
|
||||||
|
SETTINGS_INIT(WidgetID.SETTINGS_GROUP_ID, WidgetID.Settings.INIT),
|
||||||
|
|
||||||
ACHIEVEMENT_DIARY_CONTAINER(WidgetID.ACHIEVEMENT_DIARY_GROUP_ID, WidgetID.AchievementDiary.CONTAINER),
|
ACHIEVEMENT_DIARY_CONTAINER(WidgetID.ACHIEVEMENT_DIARY_GROUP_ID, WidgetID.AchievementDiary.CONTAINER),
|
||||||
|
|
||||||
|
|||||||
@@ -31,6 +31,8 @@ import net.runelite.client.config.ConfigItem;
|
|||||||
@ConfigGroup("music")
|
@ConfigGroup("music")
|
||||||
public interface MusicConfig extends Config
|
public interface MusicConfig extends Config
|
||||||
{
|
{
|
||||||
|
String GRANULAR_SLIDERS = "granularSliders";
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "muteOwnAreaSounds",
|
keyName = "muteOwnAreaSounds",
|
||||||
name = "Mute player area sounds",
|
name = "Mute player area sounds",
|
||||||
@@ -86,6 +88,17 @@ public interface MusicConfig extends Config
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ConfigItem(
|
||||||
|
keyName = GRANULAR_SLIDERS,
|
||||||
|
name = "Granular volume sliders",
|
||||||
|
description = "Make the volume sliders allow better control of volume",
|
||||||
|
position = 5
|
||||||
|
)
|
||||||
|
default boolean granularSliders()
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
keyName = "musicVolume",
|
keyName = "musicVolume",
|
||||||
name = "",
|
name = "",
|
||||||
|
|||||||
@@ -27,28 +27,46 @@
|
|||||||
package net.runelite.client.plugins.music;
|
package net.runelite.client.plugins.music;
|
||||||
|
|
||||||
import com.google.common.collect.ImmutableSet;
|
import com.google.common.collect.ImmutableSet;
|
||||||
|
import com.google.common.primitives.Ints;
|
||||||
import com.google.inject.Provides;
|
import com.google.inject.Provides;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Comparator;
|
import java.util.Comparator;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
import java.util.function.Consumer;
|
||||||
|
import java.util.function.IntConsumer;
|
||||||
|
import java.util.function.IntSupplier;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import lombok.Setter;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import net.runelite.api.Actor;
|
import net.runelite.api.Actor;
|
||||||
import net.runelite.api.Client;
|
import net.runelite.api.Client;
|
||||||
import net.runelite.api.GameState;
|
import net.runelite.api.GameState;
|
||||||
import net.runelite.api.NPC;
|
import net.runelite.api.NPC;
|
||||||
|
import net.runelite.api.ParamID;
|
||||||
import net.runelite.api.Player;
|
import net.runelite.api.Player;
|
||||||
|
import net.runelite.api.ScriptEvent;
|
||||||
import net.runelite.api.ScriptID;
|
import net.runelite.api.ScriptID;
|
||||||
|
import net.runelite.api.SettingID;
|
||||||
import net.runelite.api.SoundEffectID;
|
import net.runelite.api.SoundEffectID;
|
||||||
import net.runelite.api.SpriteID;
|
import net.runelite.api.SpriteID;
|
||||||
|
import net.runelite.api.StructComposition;
|
||||||
|
import net.runelite.api.StructID;
|
||||||
import net.runelite.api.VarClientInt;
|
import net.runelite.api.VarClientInt;
|
||||||
|
import net.runelite.api.VarPlayer;
|
||||||
|
import net.runelite.api.Varbits;
|
||||||
import net.runelite.api.events.AreaSoundEffectPlayed;
|
import net.runelite.api.events.AreaSoundEffectPlayed;
|
||||||
|
import net.runelite.api.events.BeforeRender;
|
||||||
import net.runelite.api.events.GameStateChanged;
|
import net.runelite.api.events.GameStateChanged;
|
||||||
|
import net.runelite.api.events.PostStructComposition;
|
||||||
|
import net.runelite.api.events.ScriptPreFired;
|
||||||
import net.runelite.api.events.SoundEffectPlayed;
|
import net.runelite.api.events.SoundEffectPlayed;
|
||||||
import net.runelite.api.events.VarClientIntChanged;
|
import net.runelite.api.events.VarClientIntChanged;
|
||||||
|
import net.runelite.api.events.VolumeChanged;
|
||||||
import net.runelite.api.events.WidgetLoaded;
|
import net.runelite.api.events.WidgetLoaded;
|
||||||
import net.runelite.api.widgets.JavaScriptCallback;
|
import net.runelite.api.widgets.JavaScriptCallback;
|
||||||
import net.runelite.api.widgets.Widget;
|
import net.runelite.api.widgets.Widget;
|
||||||
@@ -59,11 +77,15 @@ import net.runelite.api.widgets.WidgetType;
|
|||||||
import net.runelite.client.callback.ClientThread;
|
import net.runelite.client.callback.ClientThread;
|
||||||
import net.runelite.client.config.ConfigManager;
|
import net.runelite.client.config.ConfigManager;
|
||||||
import net.runelite.client.eventbus.Subscribe;
|
import net.runelite.client.eventbus.Subscribe;
|
||||||
|
import net.runelite.client.events.ConfigChanged;
|
||||||
import net.runelite.client.game.chatbox.ChatboxPanelManager;
|
import net.runelite.client.game.chatbox.ChatboxPanelManager;
|
||||||
import net.runelite.client.game.chatbox.ChatboxTextInput;
|
import net.runelite.client.game.chatbox.ChatboxTextInput;
|
||||||
import net.runelite.client.plugins.Plugin;
|
import net.runelite.client.plugins.Plugin;
|
||||||
import net.runelite.client.plugins.PluginDescriptor;
|
import net.runelite.client.plugins.PluginDescriptor;
|
||||||
|
import net.runelite.client.ui.overlay.tooltip.Tooltip;
|
||||||
|
import net.runelite.client.ui.overlay.tooltip.TooltipManager;
|
||||||
|
|
||||||
|
@Slf4j
|
||||||
@PluginDescriptor(
|
@PluginDescriptor(
|
||||||
name = "Music",
|
name = "Music",
|
||||||
description = "Adds search and filter for the music list, and additional volume control",
|
description = "Adds search and filter for the music list, and additional volume control",
|
||||||
@@ -71,6 +93,8 @@ import net.runelite.client.plugins.PluginDescriptor;
|
|||||||
)
|
)
|
||||||
public class MusicPlugin extends Plugin
|
public class MusicPlugin extends Plugin
|
||||||
{
|
{
|
||||||
|
private static final int SLIDER_HANDLE_SIZE = 16;
|
||||||
|
|
||||||
private static final Set<Integer> SOURCELESS_PLAYER_SOUNDS = ImmutableSet.of(
|
private static final Set<Integer> SOURCELESS_PLAYER_SOUNDS = ImmutableSet.of(
|
||||||
SoundEffectID.TELEPORT_VWOOP
|
SoundEffectID.TELEPORT_VWOOP
|
||||||
);
|
);
|
||||||
@@ -117,6 +141,14 @@ public class MusicPlugin extends Plugin
|
|||||||
@Inject
|
@Inject
|
||||||
private ChatboxPanelManager chatboxPanelManager;
|
private ChatboxPanelManager chatboxPanelManager;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
private TooltipManager tooltipManager;
|
||||||
|
|
||||||
|
private Channel musicChannel;
|
||||||
|
private Channel effectChannel;
|
||||||
|
private Channel areaChannel;
|
||||||
|
private Channel[] channels;
|
||||||
|
|
||||||
private ChatboxTextInput searchInput;
|
private ChatboxTextInput searchInput;
|
||||||
|
|
||||||
private Widget musicSearchButton;
|
private Widget musicSearchButton;
|
||||||
@@ -126,12 +158,36 @@ public class MusicPlugin extends Plugin
|
|||||||
|
|
||||||
private MusicState currentMusicFilter = MusicState.ALL;
|
private MusicState currentMusicFilter = MusicState.ALL;
|
||||||
|
|
||||||
|
private Tooltip sliderTooltip;
|
||||||
|
private boolean shuttingDown = false;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void startUp()
|
protected void startUp()
|
||||||
{
|
{
|
||||||
clientThread.invoke(() ->
|
clientThread.invoke(() ->
|
||||||
{
|
{
|
||||||
|
this.shuttingDown = false;
|
||||||
|
|
||||||
|
musicChannel = new Channel("Music",
|
||||||
|
VarPlayer.MUSIC_VOLUME, Varbits.MUTED_MUSIC_VOLUME,
|
||||||
|
musicConfig::getMusicVolume, musicConfig::setMusicVolume,
|
||||||
|
client::setMusicVolume, 255,
|
||||||
|
WidgetInfo.SETTINGS_SIDE_MUSIC_SLIDER);
|
||||||
|
effectChannel = new Channel("Sound Effects",
|
||||||
|
VarPlayer.SOUND_EFFECT_VOLUME, Varbits.MUTED_SOUND_EFFECT_VOLUME,
|
||||||
|
musicConfig::getSoundEffectVolume, musicConfig::setSoundEffectVolume,
|
||||||
|
client::setSoundEffectVolume, 127,
|
||||||
|
WidgetInfo.SETTINGS_SIDE_SOUND_EFFECT_SLIDER);
|
||||||
|
areaChannel = new Channel("Area Sounds",
|
||||||
|
VarPlayer.AREA_EFFECT_VOLUME, Varbits.MUTED_AREA_EFFECT_VOLUME,
|
||||||
|
musicConfig::getAreaSoundEffectVolume, musicConfig::setAreaSoundEffectVolume,
|
||||||
|
client::setAreaSoundEffectVolume, 127,
|
||||||
|
WidgetInfo.SETTINGS_SIDE_AREA_SOUND_SLIDER);
|
||||||
|
channels = new Channel[]{musicChannel, effectChannel, areaChannel};
|
||||||
|
|
||||||
addMusicButtons();
|
addMusicButtons();
|
||||||
|
updateMusicOptions();
|
||||||
|
resetSettingsWindow();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -145,6 +201,11 @@ public class MusicPlugin extends Plugin
|
|||||||
}
|
}
|
||||||
|
|
||||||
tracks = null;
|
tracks = null;
|
||||||
|
clientThread.invoke(() ->
|
||||||
|
{
|
||||||
|
shuttingDown = true;
|
||||||
|
teardownMusicOptions();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@Provides
|
@Provides
|
||||||
@@ -175,6 +236,12 @@ public class MusicPlugin extends Plugin
|
|||||||
currentMusicFilter = MusicState.ALL;
|
currentMusicFilter = MusicState.ALL;
|
||||||
addMusicButtons();
|
addMusicButtons();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((widgetLoaded.getGroupId() == WidgetID.SETTINGS_GROUP_ID || widgetLoaded.getGroupId() == WidgetID.SETTINGS_SIDE_GROUP_ID)
|
||||||
|
&& musicConfig.granularSliders())
|
||||||
|
{
|
||||||
|
updateMusicOptions();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void addMusicButtons()
|
private void addMusicButtons()
|
||||||
@@ -225,6 +292,42 @@ public class MusicPlugin extends Plugin
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Subscribe
|
||||||
|
public void onVolumeChanged(VolumeChanged volumeChanged)
|
||||||
|
{
|
||||||
|
if (musicConfig.granularSliders())
|
||||||
|
{
|
||||||
|
updateMusicOptions();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Subscribe
|
||||||
|
public void onConfigChanged(ConfigChanged configChanged)
|
||||||
|
{
|
||||||
|
if ("music".equals(configChanged.getGroup()))
|
||||||
|
{
|
||||||
|
clientThread.invoke(() ->
|
||||||
|
{
|
||||||
|
if (MusicConfig.GRANULAR_SLIDERS.equals(configChanged.getKey()))
|
||||||
|
{
|
||||||
|
if (musicConfig.granularSliders())
|
||||||
|
{
|
||||||
|
updateMusicOptions();
|
||||||
|
resetSettingsWindow();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
teardownMusicOptions();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
updateMusicOptions();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private boolean isOnMusicTab()
|
private boolean isOnMusicTab()
|
||||||
{
|
{
|
||||||
return client.getVar(VarClientInt.INVENTORY_TAB) == 13;
|
return client.getVar(VarClientInt.INVENTORY_TAB) == 13;
|
||||||
@@ -350,6 +453,437 @@ public class MusicPlugin extends Plugin
|
|||||||
private final int spriteID;
|
private final int spriteID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@RequiredArgsConstructor
|
||||||
|
private class Slider
|
||||||
|
{
|
||||||
|
@Getter
|
||||||
|
protected final Channel channel;
|
||||||
|
|
||||||
|
protected Widget track;
|
||||||
|
protected Widget handle;
|
||||||
|
|
||||||
|
public void update()
|
||||||
|
{
|
||||||
|
handle.setOnDragListener((JavaScriptCallback) this::drag);
|
||||||
|
handle.setOnDragCompleteListener((JavaScriptCallback) this::drag);
|
||||||
|
handle.setHasListener(true);
|
||||||
|
|
||||||
|
track.setOnMouseRepeatListener((JavaScriptCallback) ev ->
|
||||||
|
{
|
||||||
|
int value = channel.getValue();
|
||||||
|
int percent = (int) Math.round((value * 100.0 / channel.getMax()));
|
||||||
|
|
||||||
|
sliderTooltip = new Tooltip(channel.getName() + ": " + percent + "%");
|
||||||
|
});
|
||||||
|
track.setOnClickListener((JavaScriptCallback) this::click);
|
||||||
|
track.setHasListener(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void shutDown()
|
||||||
|
{
|
||||||
|
if (handle != null)
|
||||||
|
{
|
||||||
|
handle.setDragParent(null);
|
||||||
|
handle.setOnDragListener((Object[]) null);
|
||||||
|
handle.setOnDragCompleteListener((Object[]) null);
|
||||||
|
}
|
||||||
|
if (track != null)
|
||||||
|
{
|
||||||
|
track.setOnMouseRepeatListener((Object[]) null);
|
||||||
|
track.setOnClickListener((Object[]) null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void drag(ScriptEvent ev)
|
||||||
|
{
|
||||||
|
moveHandle(ev.getMouseX());
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void click(ScriptEvent ev)
|
||||||
|
{
|
||||||
|
moveHandle(ev.getMouseX() - (SLIDER_HANDLE_SIZE / 2));
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void moveHandle(int x)
|
||||||
|
{
|
||||||
|
int level = (x * channel.max) / getWidth();
|
||||||
|
level = Ints.constrainToRange(level, 0, channel.max);
|
||||||
|
channel.setLevel(level);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int getWidth()
|
||||||
|
{
|
||||||
|
return track.getWidth() - SLIDER_HANDLE_SIZE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class SettingsSideSlider extends Slider
|
||||||
|
{
|
||||||
|
private final WidgetInfo root;
|
||||||
|
private Widget icon;
|
||||||
|
|
||||||
|
SettingsSideSlider(Channel channel, WidgetInfo root)
|
||||||
|
{
|
||||||
|
super(channel);
|
||||||
|
this.root = root;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void update()
|
||||||
|
{
|
||||||
|
Widget root = client.getWidget(this.root);
|
||||||
|
if (root == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Object[] onLoad = root.getOnLoadListener();
|
||||||
|
if (onLoad == null || onLoad.length != 5)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.icon = client.getWidget((Integer) onLoad[1]);
|
||||||
|
this.track = client.getWidget((Integer) onLoad[2]);
|
||||||
|
this.handle = client.getWidget((Integer) onLoad[3]);
|
||||||
|
if (this.track == null || this.handle == null)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (Widget w : track.getChildren())
|
||||||
|
{
|
||||||
|
if (w != null)
|
||||||
|
{
|
||||||
|
w.setAction(0, null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
handle.setOnVarTransmitListener((Object[]) null);
|
||||||
|
handle.setDragParent(track);
|
||||||
|
handle.setSpriteId(SpriteID.SETTINGS_SLIDER_HANDLE_GREEN);
|
||||||
|
super.update();
|
||||||
|
|
||||||
|
int val = channel.getValue();
|
||||||
|
handle.setOriginalX((val * getWidth()) / channel.getMax());
|
||||||
|
handle.revalidate();
|
||||||
|
|
||||||
|
// emulate [proc,settings_update_icon]
|
||||||
|
boolean unmuted = val != 0;
|
||||||
|
icon.getChild(1).setHidden(unmuted);
|
||||||
|
icon.setAction(0, unmuted ? "Unmute" : "Mute");
|
||||||
|
// Set name + no tooltip; we have our own for ops
|
||||||
|
icon.setName(channel.getName());
|
||||||
|
icon.setOnMouseRepeatListener((Object[]) null);
|
||||||
|
icon.setOnOpListener((JavaScriptCallback) ev -> channel.toggleMute());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void shutDown()
|
||||||
|
{
|
||||||
|
super.shutDown();
|
||||||
|
handle.setSpriteId(SpriteID.SETTINGS_SLIDER_HANDLE_BLUE);
|
||||||
|
|
||||||
|
this.icon.setOnOpListener((Object[]) null);
|
||||||
|
|
||||||
|
Widget root = client.getWidget(this.root);
|
||||||
|
if (root != null)
|
||||||
|
{
|
||||||
|
client.createScriptEvent(root.getOnLoadListener())
|
||||||
|
.setSource(root)
|
||||||
|
.run();
|
||||||
|
}
|
||||||
|
|
||||||
|
this.handle = this.track = this.icon = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class SettingsSlider extends Slider
|
||||||
|
{
|
||||||
|
private final int offsetX;
|
||||||
|
private final int offsetY;
|
||||||
|
private final int width;
|
||||||
|
private final Widget realTrack;
|
||||||
|
|
||||||
|
SettingsSlider(Channel channel, Widget handle, Widget track, int width, int offsetY, int offsetX, Widget realTrack)
|
||||||
|
{
|
||||||
|
super(channel);
|
||||||
|
this.handle = handle;
|
||||||
|
this.track = track;
|
||||||
|
this.width = width;
|
||||||
|
this.offsetX = offsetX;
|
||||||
|
this.offsetY = offsetY;
|
||||||
|
this.realTrack = realTrack;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void update()
|
||||||
|
{
|
||||||
|
super.update();
|
||||||
|
|
||||||
|
int val = channel.getValue();
|
||||||
|
handle.setOriginalX(offsetX + (val * getWidth()) / channel.getMax());
|
||||||
|
handle.setOriginalY(offsetY);
|
||||||
|
handle.revalidate();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected int getWidth()
|
||||||
|
{
|
||||||
|
return width - SLIDER_HANDLE_SIZE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void click(ScriptEvent ev)
|
||||||
|
{
|
||||||
|
super.click(ev);
|
||||||
|
realTrack.setOriginalX(offsetX);
|
||||||
|
realTrack.setOriginalY(offsetY);
|
||||||
|
realTrack.setOriginalWidth(this.width);
|
||||||
|
realTrack.setOriginalHeight(SLIDER_HANDLE_SIZE);
|
||||||
|
realTrack.revalidate();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@SuppressWarnings("PMD.UselessOverridingMethod")
|
||||||
|
public void shutDown()
|
||||||
|
{
|
||||||
|
// calling settings_init will do teardown for us
|
||||||
|
super.shutDown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Subscribe
|
||||||
|
private void onPostStructComposition(PostStructComposition ev)
|
||||||
|
{
|
||||||
|
if (shuttingDown)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
StructComposition sc = ev.getStructComposition();
|
||||||
|
switch (sc.getId())
|
||||||
|
{
|
||||||
|
case StructID.SETTINGS_MUSIC_VOLUME:
|
||||||
|
case StructID.SETTINGS_EFFECT_VOLUME:
|
||||||
|
case StructID.SETTINGS_AREA_VOLUME:
|
||||||
|
if (!musicConfig.granularSliders())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
sc.setValue(ParamID.SETTING_SLIDER_STEPS, 1);
|
||||||
|
sc.setValue(ParamID.SETTING_CUSTOM_TRANSMIT, 0);
|
||||||
|
sc.setValue(ParamID.SETTING_FOREGROUND_CLICKZONE, 0);
|
||||||
|
sc.setValue(ParamID.SETTING_SLIDER_CUSTOM_ONOP, 1);
|
||||||
|
sc.setValue(ParamID.SETTING_SLIDER_CUSTOM_SETPOS, 1);
|
||||||
|
sc.setValue(ParamID.SETTING_SLIDER_IS_DRAGGABLE, 1);
|
||||||
|
sc.setValue(ParamID.SETTING_SLIDER_DEADZONE, 0);
|
||||||
|
sc.setValue(ParamID.SETTING_SLIDER_DEADZONE, 0);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Subscribe
|
||||||
|
private void onScriptPreFired(ScriptPreFired ev)
|
||||||
|
{
|
||||||
|
if (shuttingDown)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ev.getScriptId() == ScriptID.SETTINGS_SLIDER_CHOOSE_ONOP)
|
||||||
|
{
|
||||||
|
if (!musicConfig.granularSliders())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int arg = client.getIntStackSize() - 7;
|
||||||
|
int[] is = client.getIntStack();
|
||||||
|
Channel channel;
|
||||||
|
switch (is[arg])
|
||||||
|
{
|
||||||
|
case SettingID.MUSIC_VOLUME:
|
||||||
|
channel = musicChannel;
|
||||||
|
break;
|
||||||
|
case SettingID.EFFECT_VOLUME:
|
||||||
|
channel = effectChannel;
|
||||||
|
break;
|
||||||
|
case SettingID.AREA_VOLUME:
|
||||||
|
channel = areaChannel;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget track = client.getScriptActiveWidget();
|
||||||
|
Widget handle = client.getWidget(is[arg + 1])
|
||||||
|
.getChild(is[arg + 2]);
|
||||||
|
Widget realTrack = client.getWidget(is[arg + 6]);
|
||||||
|
SettingsSlider s = new SettingsSlider(channel, handle, track, is[arg + 3], is[arg + 4], is[arg + 5], realTrack);
|
||||||
|
s.update();
|
||||||
|
s.getChannel().setWindowSlider(s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class Channel
|
||||||
|
{
|
||||||
|
@Getter
|
||||||
|
private final String name;
|
||||||
|
private final VarPlayer var;
|
||||||
|
private final Varbits mutedVar;
|
||||||
|
private final IntSupplier getter;
|
||||||
|
private final Consumer<Integer> setter;
|
||||||
|
private final IntConsumer volumeChanger;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private final int max;
|
||||||
|
|
||||||
|
private final Slider sideSlider;
|
||||||
|
|
||||||
|
@Setter
|
||||||
|
private Slider windowSlider;
|
||||||
|
|
||||||
|
Channel(String name,
|
||||||
|
VarPlayer var, Varbits mutedVar,
|
||||||
|
IntSupplier getter, Consumer<Integer> setter,
|
||||||
|
IntConsumer volumeChanger, int max,
|
||||||
|
WidgetInfo sideRoot)
|
||||||
|
{
|
||||||
|
this.name = name;
|
||||||
|
this.var = var;
|
||||||
|
this.mutedVar = mutedVar;
|
||||||
|
this.getter = getter;
|
||||||
|
this.setter = setter;
|
||||||
|
this.volumeChanger = volumeChanger;
|
||||||
|
this.max = max;
|
||||||
|
this.sideSlider = new SettingsSideSlider(this, sideRoot);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int getValueRaw()
|
||||||
|
{
|
||||||
|
int value = getter.getAsInt();
|
||||||
|
if (value == 0)
|
||||||
|
{
|
||||||
|
// Use the vanilla value
|
||||||
|
|
||||||
|
// the varps are known by the engine and it requires they are stored so
|
||||||
|
// 0 = max and 4 = muted
|
||||||
|
int raw = 4 - client.getVar(var);
|
||||||
|
if (raw == 0)
|
||||||
|
{
|
||||||
|
raw = -(4 - client.getVar(mutedVar));
|
||||||
|
}
|
||||||
|
value = ((raw * max) / 4);
|
||||||
|
|
||||||
|
// readd our 1 offset for unknown's place
|
||||||
|
value += value < 0 ? -1 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
private int getValue()
|
||||||
|
{
|
||||||
|
int value = getValueRaw();
|
||||||
|
|
||||||
|
// muted with saved restore point
|
||||||
|
if (value < 0)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 0 is used for unknown, so config values are 1 away from zero
|
||||||
|
return value - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void toggleMute()
|
||||||
|
{
|
||||||
|
int val = -getValueRaw();
|
||||||
|
if (val == -1)
|
||||||
|
{
|
||||||
|
// muted without a reset value
|
||||||
|
val = max / 2;
|
||||||
|
}
|
||||||
|
setter.accept(val);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLevel(int level)
|
||||||
|
{
|
||||||
|
setter.accept(level + 1);
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void update()
|
||||||
|
{
|
||||||
|
volumeChanger.accept(getValue());
|
||||||
|
sideSlider.update();
|
||||||
|
if (windowSlider != null)
|
||||||
|
{
|
||||||
|
windowSlider.update();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void shutDown()
|
||||||
|
{
|
||||||
|
sideSlider.shutDown();
|
||||||
|
if (windowSlider != null)
|
||||||
|
{
|
||||||
|
windowSlider.shutDown();
|
||||||
|
}
|
||||||
|
|
||||||
|
int raw = 4 - client.getVar(var);
|
||||||
|
int value = ((raw * max) / 4);
|
||||||
|
volumeChanger.accept(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateMusicOptions()
|
||||||
|
{
|
||||||
|
for (Channel channel : channels)
|
||||||
|
{
|
||||||
|
channel.update();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void teardownMusicOptions()
|
||||||
|
{
|
||||||
|
// the side panel uses this too, so it has to run before they get shut down
|
||||||
|
client.getStructCompositionCache().reset();
|
||||||
|
|
||||||
|
for (Channel channel : channels)
|
||||||
|
{
|
||||||
|
channel.shutDown();
|
||||||
|
}
|
||||||
|
|
||||||
|
resetSettingsWindow();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void resetSettingsWindow()
|
||||||
|
{
|
||||||
|
client.getStructCompositionCache().reset();
|
||||||
|
|
||||||
|
Widget init = client.getWidget(WidgetInfo.SETTINGS_INIT);
|
||||||
|
if (init != null)
|
||||||
|
{
|
||||||
|
// [clientscript, settings_init]
|
||||||
|
client.createScriptEvent(init.getOnLoadListener())
|
||||||
|
.setSource(init)
|
||||||
|
.run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Subscribe
|
||||||
|
private void onBeforeRender(BeforeRender ev)
|
||||||
|
{
|
||||||
|
if (sliderTooltip != null)
|
||||||
|
{
|
||||||
|
tooltipManager.add(sliderTooltip);
|
||||||
|
sliderTooltip = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Subscribe
|
@Subscribe
|
||||||
public void onAreaSoundEffectPlayed(AreaSoundEffectPlayed areaSoundEffectPlayed)
|
public void onAreaSoundEffectPlayed(AreaSoundEffectPlayed areaSoundEffectPlayed)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user