Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to set fade animation timing for Tracer #388

Merged
merged 3 commits into from
Sep 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 34 additions & 16 deletions src/main/kotlin/com/lambda/client/module/modules/render/Tracers.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import net.minecraft.entity.Entity
import net.minecraft.entity.player.EntityPlayer
import net.minecraftforge.fml.common.gameevent.TickEvent
import java.util.concurrent.ConcurrentHashMap
import kotlin.math.min

object Tracers : Module(
name = "Tracers",
Expand Down Expand Up @@ -49,6 +48,7 @@ object Tracers : Module(
private val alpha by setting("Alpha", 255, 0..255, 1, { page == Page.RENDERING })
private val yOffset by setting("Y Offset Percentage", 0, 0..100, 5, { page == Page.RENDERING })
private val thickness by setting("Line Thickness", 2.0f, 0.25f..5.0f, 0.25f, { page == Page.RENDERING })
private val fadeSpeed by setting("Fade Speed", 150, 0..500, 25, { page == Page.RENDERING }, unit = "ms")

/* Range color settings */
private val rangedColor by setting("Ranged Color", true, { page == Page.RANGE_COLOR })
Expand All @@ -60,7 +60,7 @@ object Tracers : Module(
ENTITY_TYPE, COLOR, RENDERING, RANGE_COLOR
}

private var renderList = ConcurrentHashMap<Entity, Pair<ColorHolder, Float>>() /* <Entity, <RGBAColor, AlphaMultiplier>> */
private var renderList = ConcurrentHashMap<Entity, TracerData>()
private var cycler = HueCycler(600)
private val renderer = ESPRenderer()

Expand All @@ -70,9 +70,19 @@ object Tracers : Module(
renderer.thickness = thickness
renderer.tracerOffset = yOffset

for ((entity, pair) in renderList) {
val rgba = pair.first.clone()
rgba.a = (rgba.a * pair.second).toInt()
for ((entity, tracerData) in renderList) {
val rgba = tracerData.color.clone()

if (fadeSpeed > 0) {
val animationCoefficient = tracerData.age * tracerData.color.a / fadeSpeed

rgba.a = if (tracerData.isEntityPresent) {
animationCoefficient.toInt().coerceAtMost(tracerData.color.a)
} else {
(-animationCoefficient + tracerData.color.a).toInt().coerceAtLeast(0)
}
}

renderer.add(entity, rgba)
}

Expand All @@ -91,22 +101,26 @@ object Tracers : Module(
ArrayList()
}

val cacheMap = HashMap<Entity, Pair<ColorHolder, Float>>()
for (entity in entityList) {
cacheMap[entity] = Pair(getColor(entity), 0f)
entityList.forEach { entity ->
renderList.computeIfAbsent(entity) {
TracerData(getColor(entity), System.currentTimeMillis(), true)
}
}

for ((entity, pair) in renderList) {
cacheMap.computeIfPresent(entity) { _, cachePair -> Pair(cachePair.first, min(pair.second + 0.075f, 1f)) }
cacheMap.computeIfAbsent(entity) { Pair(getColor(entity), pair.second - 0.05f) }
renderList.forEach { (entity, tracerData) ->
if (entityList.contains(entity)) {
tracerData.color = getColor(entity)
return@forEach
}

if (pair.second < 0f) {
cacheMap.remove(entity)
if (tracerData.isEntityPresent) {
tracerData.isEntityPresent = false
tracerData.timeStamp = System.currentTimeMillis()
return@forEach
}
}

renderList.clear()
renderList.putAll(cacheMap)
if (tracerData.age > fadeSpeed || fadeSpeed == 0) renderList.remove(entity)
}
}
}

Expand All @@ -132,4 +146,8 @@ object Tracers : Module(
val a = convertRange(distance, 0f, colorChangeRange.toFloat(), alpha.toFloat(), alphaFar.toFloat()).toInt()
return ColorHolder(r, g, b, a)
}

private data class TracerData(var color: ColorHolder, var timeStamp: Long, var isEntityPresent: Boolean) {
val age get() = System.currentTimeMillis() - timeStamp
}
}