Merge pull request #6967 from Trevor159/timestamp-config

Add customizable timestamps
This commit is contained in:
Adam
2019-04-08 16:00:15 -04:00
committed by GitHub
3 changed files with 148 additions and 8 deletions

View File

@@ -35,6 +35,7 @@ public interface TimestampConfig extends Config
@ConfigItem(
keyName = "opaqueTimestamp",
name = "Timestamps (opaque)",
position = 1,
description = "Colour of Timestamps from the Timestamps plugin (opaque)"
)
Color opaqueTimestamp();
@@ -42,7 +43,26 @@ public interface TimestampConfig extends Config
@ConfigItem(
keyName = "transparentTimestamp",
name = "Timestamps (transparent)",
position = 2,
description = "Colour of Timestamps from the Timestamps plugin (transparent)"
)
Color transparentTimestamp();
@ConfigItem(
keyName = "format",
name = "Timestamp Format",
position = 3,
description = "Customize your timestamp format by using the following characters<br>" +
"'yyyy' : year<br>" +
"'MM' : month<br>" +
"'dd' : day<br>" +
"'HH' : hour in 24 hour format<br>" +
"'hh' : hour in 12 hour format<br>" +
"'mm' : minute<br>" +
"'ss' : second"
)
default String timestampFormat()
{
return "[HH:mm]";
}
}

View File

@@ -27,14 +27,17 @@ package net.runelite.client.plugins.timestamp;
import com.google.inject.Provides;
import java.awt.Color;
import java.text.SimpleDateFormat;
import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.temporal.ChronoField;
import java.util.Date;
import javax.inject.Inject;
import lombok.Getter;
import net.runelite.api.Client;
import net.runelite.api.MessageNode;
import net.runelite.api.Varbits;
import net.runelite.api.events.ConfigChanged;
import net.runelite.api.events.ScriptCallbackEvent;
import net.runelite.client.config.ConfigManager;
import net.runelite.client.eventbus.Subscribe;
@@ -56,12 +59,36 @@ public class TimestampPlugin extends Plugin
@Inject
private TimestampConfig config;
@Getter
private SimpleDateFormat formatter;
@Provides
public TimestampConfig provideConfig(final ConfigManager configManager)
{
return configManager.getConfig(TimestampConfig.class);
}
@Override
protected void startUp() throws Exception
{
updateFormatter();
}
@Override
protected void shutDown() throws Exception
{
formatter = null;
}
@Subscribe
public void onConfigChanged(ConfigChanged event)
{
if (event.getGroup().equals("timestamp") && event.getKey().equals("format"))
{
updateFormatter();
}
}
@Subscribe
public void onScriptCallbackEvent(ScriptCallbackEvent event)
{
@@ -80,13 +107,7 @@ public class TimestampPlugin extends Plugin
MessageNode messageNode = (MessageNode) client.getMessages().get(messageId);
final ZonedDateTime time = ZonedDateTime.ofInstant(
Instant.ofEpochSecond(messageNode.getTimestamp()), ZoneId.systemDefault());
final String dateFormat = time.get(ChronoField.HOUR_OF_DAY) + ":" +
String.format("%02d", time.get(ChronoField.MINUTE_OF_HOUR));
String timestamp = "[" + dateFormat + "] ";
String timestamp = generateTimestamp(messageNode.getTimestamp(), ZoneId.systemDefault()) + " ";
Color timestampColour = getTimestampColour();
if (timestampColour != null)
@@ -103,4 +124,24 @@ public class TimestampPlugin extends Plugin
return isChatboxTransparent ? config.transparentTimestamp() : config.opaqueTimestamp();
}
String generateTimestamp(int timestamp, ZoneId zoneId)
{
final ZonedDateTime time = ZonedDateTime.ofInstant(
Instant.ofEpochSecond(timestamp), zoneId);
return formatter.format(Date.from(time.toInstant()));
}
private void updateFormatter()
{
try
{
formatter = new SimpleDateFormat(config.timestampFormat());
}
catch (IllegalArgumentException e)
{
formatter = new SimpleDateFormat("[HH:mm]");
}
}
}