-
Notifications
You must be signed in to change notification settings - Fork 5
/
Koala - TEMPLATE SCRIPT.ksp
executable file
·120 lines (77 loc) · 2.48 KB
/
Koala - TEMPLATE SCRIPT.ksp
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
********* KOALA - AN ADVANCED SCRIPTING LIBRARY FOR KSP DEVELOPERS *********
This file is part of Koala - An advanced scripting library for KSP developers.
Copyright (c) 2016 Davide Magni
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the distribution.
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
---
CONTACTS
www.davidemagni.com
Skype: magneto538
Twitter: magneto538
}
SET_CONDITION(ENABLE_DEBUG)
import "Koala/Koala.ksp"
on init
activate_logger(get_folder(GET_FOLDER_PATCH_DIR) & "/log.nka")
Koala.init
create_instrument(540, "", "", "Koala v2.1 - TEMPLATE SCRIPT")
end on
on persistence_changed
DEBUG.on_persistence_changed
// Your script here
end on
on listener
DEBUG.on_listener
// Your script here
end on
on note
DEBUG.on_note
// Your script here
DEBUG.groups_monitor
end on
on release
DEBUG.on_release
// Your script here
end on
on controller
DEBUG.on_controller
// Your script here
end on
on pgs_changed
DEBUG.on_pgs_changed
// Your script here
end on
on poly_at
DEBUG.on_poly_at
// Your script here
end on
on rpn
DEBUG.on_rpn_nrpn
// Your script here
end on
on async_complete
DEBUG.on_async_complete
// Your script here
end on
on nrpn
DEBUG.on_rpn_nrpn
// Your script here
end on