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

Fix folder opening for most OS #237

Merged
merged 1 commit into from
Feb 11, 2022
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions src/main/kotlin/com/lambda/client/LambdaMod.kt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ class LambdaMod {

const val LAMBDA = "λ"

const val PLUGIN_PATH = "${DIRECTORY}plugins/"
const val PACKET_LOG_PATH = "${DIRECTORY}packet-logs/"
const val SONGS_PATH = "${DIRECTORY}songs/"

val LOG: Logger = LogManager.getLogger(NAME)

var ready: Boolean = false; private set
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.lambda.client.command.commands

import com.lambda.client.LambdaMod
import com.lambda.client.command.ClientCommand
import com.lambda.client.plugin.PluginLoader
import com.lambda.client.plugin.PluginManager
Expand All @@ -18,7 +19,7 @@ object PluginCommand : ClientCommand(
string("jar name") { nameArg ->
execute {
val name = "${nameArg.value.removeSuffix(".jar")}.jar"
val file = File("${PluginManager.pluginPath}$name")
val file = File("${LambdaMod.PLUGIN_PATH}$name")

if (!file.exists()) {
MessageSendHelper.sendErrorMessage("${formatValue(name)} is not a valid jar file name!")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ object LambdaClickGui : AbstractLambdaGui<ModuleSettingWindow, AbstractModule>()
URL(remotePluginButton.downloadUrl).openStream().use { inputStream ->
Files.copy(
inputStream,
Paths.get("${PluginManager.pluginPath}/${remotePluginButton.fileName}"),
Paths.get("${LambdaMod.PLUGIN_PATH}/${remotePluginButton.fileName}"),
StandardCopyOption.REPLACE_EXISTING
)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
package com.lambda.client.gui.clickgui.component

import com.lambda.client.LambdaMod
import com.lambda.client.gui.rgui.component.BooleanSlider
import com.lambda.client.plugin.PluginManager
import com.lambda.client.util.filesystem.FolderUtils
import com.lambda.client.util.math.Vec2f
import java.awt.Desktop
import java.io.File

object ImportPluginButton : BooleanSlider("Import...", 0.0, "Import plugins to Lambda") {
override fun onClick(mousePos: Vec2f, buttonId: Int) {
super.onClick(mousePos, buttonId)
if (buttonId == 0) Desktop.getDesktop().open(File(PluginManager.pluginPath))
if (buttonId == 0) FolderUtils.openFolder(LambdaMod.PLUGIN_PATH)
}

override fun onRelease(mousePos: Vec2f, buttonId: Int) {
super.onRelease(mousePos, buttonId)
if (buttonId == 1) Desktop.getDesktop().open(File(PluginManager.pluginPath))
if (buttonId == 1) FolderUtils.openFolder(LambdaMod.PLUGIN_PATH)
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ object NoteBot : Module(

private fun loadSong() {
defaultScope.launch(Dispatchers.IO) {
val path = "${LambdaMod.DIRECTORY}songs/$songName"
val path = "${LambdaMod.SONGS_PATH}$songName"

try {
parse(path).let {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import net.minecraft.network.Packet
import net.minecraft.network.play.client.*
import net.minecraft.network.play.server.*
import net.minecraft.util.math.BlockPos
import net.minecraft.util.text.TextFormatting
import net.minecraftforge.fml.common.gameevent.TickEvent
import java.io.File
import java.io.FileWriter
Expand Down Expand Up @@ -48,7 +49,6 @@ object PacketLogger : Module(
private var lastTick = 0L
private val timer = TickTimer(TimeUnit.SECONDS)

private const val directory = "${LambdaMod.DIRECTORY}packetLogs"
private var filename = ""
private var lines = ArrayList<String>()

Expand Down Expand Up @@ -76,7 +76,7 @@ object PacketLogger : Module(
write()

runSafe {
MessageSendHelper.sendChatMessage("$chatName Log saved at $directory/${filename}")
MessageSendHelper.sendChatMessage("$chatName Log saved at ${TextFormatting.GREEN}${LambdaMod.PACKET_LOG_PATH}${filename}")
}
}

Expand Down Expand Up @@ -735,11 +735,11 @@ object PacketLogger : Module(

defaultScope.launch(Dispatchers.IO) {
try {
with(File(directory)) {
with(File(LambdaMod.PACKET_LOG_PATH)) {
if (!exists()) mkdir()
}

FileWriter("$directory/${filename}", true).buffered().use {
FileWriter("${LambdaMod.PACKET_LOG_PATH}${filename}", true).buffered().use {
for (line in lines) it.write(line)
}
} catch (e: Exception) {
Expand Down
4 changes: 1 addition & 3 deletions src/main/kotlin/com/lambda/client/plugin/PluginManager.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ internal object PluginManager : AsyncLoader<List<PluginLoader>> {
val loadedPlugins = NameableSet<Plugin>()
val loadedPluginLoader = NameableSet<PluginLoader>()

const val pluginPath = "${LambdaMod.DIRECTORY}plugins/"

private val lambdaVersion = DefaultArtifactVersion(LambdaMod.VERSION)

override fun preLoad0() = checkPluginLoaders(getLoaders())
Expand All @@ -30,7 +28,7 @@ internal object PluginManager : AsyncLoader<List<PluginLoader>> {
}

fun getLoaders(): List<PluginLoader> {
val dir = File(pluginPath)
val dir = File(LambdaMod.PLUGIN_PATH)
if (!dir.exists()) dir.mkdir()

val files = dir.listFiles() ?: return emptyList()
Expand Down
20 changes: 20 additions & 0 deletions src/main/kotlin/com/lambda/client/util/filesystem/FolderUtils.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package com.lambda.client.util.filesystem

import java.awt.Desktop
import java.io.File
import java.net.URL

object FolderUtils {
@JvmStatic
Expand All @@ -21,6 +23,24 @@ object FolderUtils {
OperatingSystem.WINDOWS -> System.getenv("APPDATA") + File.separator + ".minecraft" + File.separator
}

/**
* Opens the given folder using the right library based on OS
*/
fun openFolder(path: String) {
Thread {
if (getOS() == OperatingSystem.WINDOWS) Desktop.getDesktop().open(File(path))
else Runtime.getRuntime().exec(getURLOpenCommand(File(path).toURI().toURL()))
}.start()
}

private fun getURLOpenCommand(url: URL): Array<String> {
var string: String = url.toString()
if ("file" == url.protocol) {
string = string.replace("file:", "file://")
}
return arrayOf("xdg-open", string)
}

/**
* @return current OperatingSystem
*/
Expand Down