Use newer Range controls in Kolakoski Kurve and Two Fifty Six.
Chris Pressey
6 years ago
6 | 6 | #container { |
7 | 7 | width: 100%; |
8 | 8 | text-align: center; |
9 | } | |
10 | #sliders-panel { | |
11 | display: inline-block; | |
12 | width: 50%; | |
13 | text-align: right; | |
9 | 14 | } |
10 | 15 | </style> |
11 | 16 | </head> |
12 | 12 | var gewgaw = new KolakoskiKurve(); |
13 | 13 | |
14 | 14 | var canvas = yoob.makeCanvas(container, 800, 600); |
15 | yoob.makeLineBreak(container); | |
16 | yoob.makeSliderPlusTextInput(container, "Segment length:", 2, 25, (2), 5, function(v) { | |
17 | gewgaw.dist = v; | |
15 | var slidersPanel = yoob.makeDiv(container); | |
16 | slidersPanel.id = "sliders-panel"; | |
17 | yoob.makeRangeControl(slidersPanel, { | |
18 | label: "Segment length:", | |
19 | min: 2, | |
20 | max: 25, | |
21 | value: 5, | |
22 | callback: function(v) { | |
23 | gewgaw.dist = v; | |
24 | } | |
25 | }); | |
26 | yoob.makeLineBreak(slidersPanel); | |
27 | yoob.makeRangeControl(slidersPanel, { | |
28 | label: "Start index:", | |
29 | min: 1, | |
30 | max: 10000, | |
31 | value: 1, | |
32 | callback: function(v) { | |
33 | gewgaw.startIndex = v - 1; | |
34 | gewgaw.reset(); | |
35 | } | |
36 | }); | |
37 | yoob.makeLineBreak(slidersPanel); | |
38 | yoob.makeRangeControl(slidersPanel, { | |
39 | label: "End index:", | |
40 | min: 1, | |
41 | max: 10000, | |
42 | value: 10000, | |
43 | callback: function(v) { | |
44 | gewgaw.endIndex = v - 1; | |
45 | gewgaw.reset(); | |
46 | } | |
18 | 47 | }); |
19 | 48 | yoob.makeLineBreak(container); |
20 | yoob.makeSliderPlusTextInput(container, "Start index", 1, 10000, 5, 1, function(v) { | |
21 | gewgaw.startIndex = v - 1; | |
22 | gewgaw.reset(); | |
23 | }); | |
24 | yoob.makeLineBreak(container); | |
25 | yoob.makeSliderPlusTextInput(container, "End index", 1, 10000, 5, 10000, function(v) { | |
26 | gewgaw.endIndex = v - 1; | |
27 | gewgaw.reset(); | |
28 | }); | |
29 | yoob.makeLineBreak(container); | |
30 | yoob.makeSelect(container, "Draw style", [ | |
49 | yoob.makeSelect(container, "Draw style:", [ | |
31 | 50 | ['opaque', "Opaque"], |
32 | 51 | ['translucent', "Translucent"], |
33 | 52 | ['xor', "XOR"] |
36 | 55 | }, 'opaque'); |
37 | 56 | yoob.makeLineBreak(container); |
38 | 57 | var button = yoob.makeButton(container, 'Reset', function() { |
39 | // this circumlocution is only to avoid weird glitching when reseting 'xor' style. | |
58 | // this circumlocution is only to avoid weird glitching when resetting 'xor' style. | |
40 | 59 | var style = gewgaw.style; |
41 | 60 | gewgaw.setStyle('opaque'); |
42 | 61 | gewgaw.setStyle(style); |
0 | 0 | /* |
1 | * This file is part of yoob.js version 0.10 | |
1 | * This file is part of yoob.js version 0.13 | |
2 | 2 | * Available from https://github.com/catseye/yoob.js/ |
3 | 3 | * This file is in the public domain. See http://unlicense.org/ for details. |
4 | 4 | */ |
209 | 209 | }; |
210 | 210 | textInput.onchange = function(e) { |
211 | 211 | var v = parseInt(textInput.value, 10); |
212 | if (v !== NaN) { | |
212 | if (!isNaN(v)) { | |
213 | 213 | slider.value = "" + v; |
214 | 214 | fun(v); |
215 | 215 | } |
221 | 221 | }); |
222 | 222 | }; |
223 | 223 | |
224 | var RangeControl = function() { | |
225 | this.init = function(cfg) { | |
226 | this.slider = cfg.slider; | |
227 | this.textInput = cfg.textInput; | |
228 | this.callback = cfg.callback; | |
229 | this.incButton = cfg.incButton; | |
230 | this.decButton = cfg.decButton; | |
231 | return this; | |
232 | }; | |
233 | ||
234 | this.set = function(value) { | |
235 | this.slider.value = "" + value; | |
236 | this.textInput.value = "" + value; | |
237 | this.callback(value); | |
238 | }; | |
239 | }; | |
240 | ||
241 | yoob.makeRangeControl = function(container, config) { | |
242 | var label = config.label; | |
243 | var min_ = config['min']; | |
244 | var max_ = config['max']; | |
245 | var value = config.value || min_; | |
246 | var callback = config.callback || function(v) {}; | |
247 | var textInputSize = config.textInputSize || 5; | |
248 | var withButtons = config.withButtons === false ? false : true; | |
249 | ||
250 | yoob.makeSpan(container, label); | |
251 | var slider = yoob.makeSlider(container, min_, max_, value); | |
252 | var s = "" + value; | |
253 | var textInput = yoob.makeTextInput(container, textInputSize, s); | |
254 | slider.onchange = function(e) { | |
255 | textInput.value = slider.value; | |
256 | callback(parseInt(slider.value, 10)); | |
257 | }; | |
258 | textInput.onchange = function(e) { | |
259 | var v = parseInt(textInput.value, 10); | |
260 | if (!isNaN(v)) { | |
261 | slider.value = "" + v; | |
262 | callback(v); | |
263 | } | |
264 | }; | |
265 | var incButton; | |
266 | var decButton; | |
267 | if (withButtons) { | |
268 | decButton = yoob.makeButton(container, "-", function() { | |
269 | var v = parseInt(textInput.value, 10); | |
270 | if ((!isNaN(v)) && v > min_) { | |
271 | v--; | |
272 | textInput.value = "" + v; | |
273 | slider.value = "" + v; | |
274 | callback(v); | |
275 | } | |
276 | }); | |
277 | incButton = yoob.makeButton(container, "+", function() { | |
278 | var v = parseInt(textInput.value, 10); | |
279 | if ((!isNaN(v)) && v < max_) { | |
280 | v++; | |
281 | textInput.value = "" + v; | |
282 | slider.value = "" + v; | |
283 | callback(v); | |
284 | } | |
285 | }); | |
286 | } | |
287 | return new RangeControl().init({ | |
288 | 'slider': slider, | |
289 | 'incButton': incButton, | |
290 | 'decButton': decButton, | |
291 | 'textInput': textInput, | |
292 | 'callback': callback | |
293 | }); | |
294 | }; | |
295 | ||
224 | 296 | yoob.makeSVG = function(container) { |
225 | 297 | var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg"); |
226 | 298 | /* <svg viewBox = "0 0 200 200" version = "1.1"> */ |
230 | 302 | |
231 | 303 | yoob.makeSVGElem = function(svg, tag, cfg) { |
232 | 304 | var elem = document.createElementNS(svg.namespaceURI, tag); |
233 | for (var key in cfg) { | |
234 | if (cfg.hasOwnProperty(key)) { | |
235 | elem.setAttribute(key, cfg[key]); | |
236 | } | |
237 | } | |
305 | Object.keys(cfg).forEach(function(key) { | |
306 | elem.setAttribute(key, cfg[key]); | |
307 | }); | |
238 | 308 | svg.appendChild(elem); |
239 | 309 | return elem; |
240 | 310 | }; |
3 | 3 | <title>Two Fifty Six</title> |
4 | 4 | <style> |
5 | 5 | body { text-align: center; } |
6 | #sliders-panel { | |
7 | display: inline-block; | |
8 | width: 40%; | |
9 | text-align: right; | |
10 | } | |
6 | 11 | </style> |
7 | 12 | </head> |
8 | 13 | <body> |
48 | 48 | ); |
49 | 49 | canvas.style.border = Math.round(BLOCK_WIDTH / 2) + 'px solid black'; |
50 | 50 | |
51 | yoob.makeLineBreak(container); | |
52 | var slidersPanel = yoob.makeDiv(container); | |
53 | slidersPanel.id = "sliders-panel"; | |
51 | 54 | var speed = getIntParam('speed', 5, 0, 50); |
52 | yoob.makeLineBreak(container); | |
53 | yoob.makeSliderPlusTextInput( | |
54 | container, "Speed:", 0, 50, 5, speed, function(v) { | |
55 | yoob.makeRangeControl(slidersPanel, { | |
56 | label: "Speed:", | |
57 | min: 0, | |
58 | max: 50, | |
59 | value: speed, | |
60 | callback: function(v) { | |
55 | 61 | g.setDelay(50 - v); |
56 | 62 | } |
57 | ); | |
63 | }); | |
58 | 64 | g.setDelay(50 - speed); |
59 | 65 | |
60 | 66 | var variety = getIntParam('variety', 1, 1, 256); |
61 | yoob.makeLineBreak(container); | |
62 | yoob.makeSliderPlusTextInput( | |
63 | container, "Variety:", 1, 256, 5, variety, function(v) { | |
67 | yoob.makeLineBreak(slidersPanel); | |
68 | yoob.makeRangeControl(slidersPanel, { | |
69 | label: "Variety:", | |
70 | min: 1, | |
71 | max: 256, | |
72 | value: variety, | |
73 | callback: function(v) { | |
64 | 74 | g.setVariety(v); |
65 | 75 | } |
66 | ); | |
76 | }); | |
67 | 77 | g.setVariety(variety); |
68 | 78 | |
69 | 79 | var noise = getIntParam('noise', 0, 0, 100); |
70 | yoob.makeLineBreak(container); | |
71 | yoob.makeSliderPlusTextInput( | |
72 | container, "Noise:", 0, 100, 5, noise, function(v) { | |
80 | yoob.makeLineBreak(slidersPanel); | |
81 | yoob.makeRangeControl(slidersPanel, { | |
82 | label: "Noise:", | |
83 | min: 0, | |
84 | max: 100, | |
85 | value: noise, | |
86 | callback: function(v) { | |
73 | 87 | g.setNoise(v); |
74 | 88 | } |
75 | ); | |
89 | }); | |
76 | 90 | g.setNoise(noise); |
77 | 91 | |
78 | 92 | var palette = params.palette || 'Tetrade'; |
0 | 0 | /* |
1 | * This file is part of yoob.js version 0.10 | |
1 | * This file is part of yoob.js version 0.13 | |
2 | 2 | * Available from https://github.com/catseye/yoob.js/ |
3 | 3 | * This file is in the public domain. See http://unlicense.org/ for details. |
4 | 4 | */ |
209 | 209 | }; |
210 | 210 | textInput.onchange = function(e) { |
211 | 211 | var v = parseInt(textInput.value, 10); |
212 | if (v !== NaN) { | |
212 | if (!isNaN(v)) { | |
213 | 213 | slider.value = "" + v; |
214 | 214 | fun(v); |
215 | 215 | } |
221 | 221 | }); |
222 | 222 | }; |
223 | 223 | |
224 | var RangeControl = function() { | |
225 | this.init = function(cfg) { | |
226 | this.slider = cfg.slider; | |
227 | this.textInput = cfg.textInput; | |
228 | this.callback = cfg.callback; | |
229 | this.incButton = cfg.incButton; | |
230 | this.decButton = cfg.decButton; | |
231 | return this; | |
232 | }; | |
233 | ||
234 | this.set = function(value) { | |
235 | this.slider.value = "" + value; | |
236 | this.textInput.value = "" + value; | |
237 | this.callback(value); | |
238 | }; | |
239 | }; | |
240 | ||
241 | yoob.makeRangeControl = function(container, config) { | |
242 | var label = config.label; | |
243 | var min_ = config['min']; | |
244 | var max_ = config['max']; | |
245 | var value = config.value || min_; | |
246 | var callback = config.callback || function(v) {}; | |
247 | var textInputSize = config.textInputSize || 5; | |
248 | var withButtons = config.withButtons === false ? false : true; | |
249 | ||
250 | yoob.makeSpan(container, label); | |
251 | var slider = yoob.makeSlider(container, min_, max_, value); | |
252 | var s = "" + value; | |
253 | var textInput = yoob.makeTextInput(container, textInputSize, s); | |
254 | slider.onchange = function(e) { | |
255 | textInput.value = slider.value; | |
256 | callback(parseInt(slider.value, 10)); | |
257 | }; | |
258 | textInput.onchange = function(e) { | |
259 | var v = parseInt(textInput.value, 10); | |
260 | if (!isNaN(v)) { | |
261 | slider.value = "" + v; | |
262 | callback(v); | |
263 | } | |
264 | }; | |
265 | var incButton; | |
266 | var decButton; | |
267 | if (withButtons) { | |
268 | decButton = yoob.makeButton(container, "-", function() { | |
269 | var v = parseInt(textInput.value, 10); | |
270 | if ((!isNaN(v)) && v > min_) { | |
271 | v--; | |
272 | textInput.value = "" + v; | |
273 | slider.value = "" + v; | |
274 | callback(v); | |
275 | } | |
276 | }); | |
277 | incButton = yoob.makeButton(container, "+", function() { | |
278 | var v = parseInt(textInput.value, 10); | |
279 | if ((!isNaN(v)) && v < max_) { | |
280 | v++; | |
281 | textInput.value = "" + v; | |
282 | slider.value = "" + v; | |
283 | callback(v); | |
284 | } | |
285 | }); | |
286 | } | |
287 | return new RangeControl().init({ | |
288 | 'slider': slider, | |
289 | 'incButton': incButton, | |
290 | 'decButton': decButton, | |
291 | 'textInput': textInput, | |
292 | 'callback': callback | |
293 | }); | |
294 | }; | |
295 | ||
224 | 296 | yoob.makeSVG = function(container) { |
225 | 297 | var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg"); |
226 | 298 | /* <svg viewBox = "0 0 200 200" version = "1.1"> */ |
230 | 302 | |
231 | 303 | yoob.makeSVGElem = function(svg, tag, cfg) { |
232 | 304 | var elem = document.createElementNS(svg.namespaceURI, tag); |
233 | for (var key in cfg) { | |
234 | if (cfg.hasOwnProperty(key)) { | |
235 | elem.setAttribute(key, cfg[key]); | |
236 | } | |
237 | } | |
305 | Object.keys(cfg).forEach(function(key) { | |
306 | elem.setAttribute(key, cfg[key]); | |
307 | }); | |
238 | 308 | svg.appendChild(elem); |
239 | 309 | return elem; |
240 | 310 | }; |