-
Notifications
You must be signed in to change notification settings - Fork 37
/
DemoRabbitHole.kt
68 lines (56 loc) · 2.13 KB
/
DemoRabbitHole.kt
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import org.openrndr.application
import org.openrndr.color.ColorRGBa
import org.openrndr.draw.loadFont
import org.openrndr.extra.parameters.*
import org.openrndr.math.Vector2
import org.openrndr.math.Vector3
import org.openrndr.math.Vector4
fun main() = application {
configure {
width = 800
height = 800
}
program {
/**
* Start RabbitControlServer with a Rabbithole with key 'orxtest'
* Please visit https://rabbithole.rabbitcontrol.cc for more information.
*
* Rabbithole allows you to access your exposed parameter from the internet.
* To use it with this example just use 'orxtest' as tunnel-name on the main page.
*/
val rabbit = RabbitControlServer(false, 10000, 8080, "wss://rabbithole.rabbitcontrol.cc/public/rcpserver/connect?key=orxtest")
val font = loadFont("demo-data/fonts/IBMPlexMono-Regular.ttf", 20.0)
val settings = object {
@TextParameter("A string")
var s: String = "Hello"
@DoubleParameter("A double", 0.0, 10.0)
var d: Double = 10.0
@BooleanParameter("A bool")
var b: Boolean = true
@ColorParameter("A fill color")
var fill = ColorRGBa.PINK
@ColorParameter("A stroke color")
var stroke = ColorRGBa.WHITE
@Vector2Parameter("A vector2")
var v2 = Vector2(200.0,200.0)
@Vector3Parameter("A vector3")
var v3 = Vector3(200.0, 200.0, 200.0)
@Vector4Parameter("A vector4")
var v4 = Vector4(200.0, 200.0, 200.0, 200.0)
@ActionParameter("Action test")
fun clicked() {
println("Clicked from RabbitControl")
}
}
rabbit.add(settings)
extend(rabbit)
extend {
drawer.clear(if (settings.b) ColorRGBa.BLUE else ColorRGBa.BLACK)
drawer.fontMap = font
drawer.fill = settings.fill
drawer.stroke = settings.stroke
drawer.circle(settings.v2, settings.d)
drawer.text(settings.s, 10.0, 20.0)
}
}
}