blob: 254d8ad097b6717c67da9198718275b90d163a1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
package at.hannibal2.skyhanni.utils
import net.minecraft.client.settings.KeyBinding
import org.lwjgl.input.Keyboard
import java.awt.Desktop
import java.io.IOException
import java.net.URI
object OSUtils {
@JvmStatic
fun openBrowser(url: String) {
if (Desktop.isDesktopSupported() && Desktop.getDesktop().isSupported(Desktop.Action.BROWSE)) {
try {
Desktop.getDesktop().browse(URI(url))
} catch (e: IOException) {
e.printStackTrace()
LorenzUtils.error("[SkyHanni] Error opening website: $url!")
}
} else {
copyToClipboard(url)
LorenzUtils.warning("[SkyHanni] Web browser is not supported! Copied url to clipboard.")
}
}
fun copyToClipboard(text: String) {
ClipboardUtils.copyToClipboard(text)
}
suspend fun readFromClipboard() = ClipboardUtils.readFromClipboard()
fun KeyBinding.isActive(): Boolean {
if (!Keyboard.isCreated()) return false
try {
if (Keyboard.isKeyDown(this.keyCode)) return true
} catch (e: IndexOutOfBoundsException) {
println("KeyBinding isActive caused an IndexOutOfBoundsException with keyCode: $keyCode")
e.printStackTrace()
return false
}
return this.isKeyDown || this.isPressed
}
}
|