Merge branch 'alexdesktopworking' of https://github.com/sugarcubes/SugarCubes into...
[SugarCubes.git] / SugarCubes.pde
1 /**
2 * +-+-+-+-+-+ +-+-+-+-+-+
3 * / /| |\ \
4 * / / + + \ \
5 * +-+-+-+-+-+ | +-+-+-+-+ | +-+-+-+-+-+
6 * | | + / \ + | |
7 * + THE + / / \ \ + CUBES +
8 * | |/ +-+-+-+-+-+-+-+ \| |
9 * +-+-+-+-+-+ | | +-+-+-+-+-+
10 * + +
11 * | SUGAR |
12 * + +
13 * | |
14 * +-+-+-+-+-+-+-+
15 *
16 * Welcome to the Sugar Cubes! This Processing sketch is a fun place to build
17 * animations, effects, and interactions for the platform. Most of the icky
18 * code guts are embedded in the GLucose library extension. If you're an
19 * artist, you shouldn't need to worry about any of that.
20 *
21 * Below, you will find definitions of the Patterns, Effects, and Interactions.
22 * If you're an artist, create a new tab in the Processing environment with
23 * your name. Implement your classes there, and add them to the list below.
24 */
25 LXPattern gplay;
26
27 LXPattern[] patterns(GLucose glucose) {
28 return new LXPattern[] {
29
30 new Gimbal(glucose),
31
32 // DMK
33
34 // Slee
35 new Swarm(glucose),
36 //new ScreenScrape(glucose),
37 new SpaceTime(glucose),
38 new ShiftingPlane(glucose),
39 new AskewPlanes(glucose),
40 new Blinders(glucose),
41 new CrossSections(glucose),
42 new Psychedelia(glucose),
43
44 new Traktor(glucose).setEligible(false),
45 new BassPod(glucose).setEligible(false),
46 new CubeEQ(glucose).setEligible(false),
47 new PianoKeyPattern(glucose).setEligible(false),
48
49 // DanH
50 new Noise(glucose),
51 gplay=new Play(glucose), // XXX do this properly
52 new Pong(glucose),
53
54 // Alex G
55 new SineSphere(glucose),
56
57 // Shaheen
58 new HelixPattern(glucose).setEligible(false),
59
60 // Toby
61 new GlitchPlasma(glucose),
62 new FireEffect(glucose).setEligible(false),
63 new StripBounce(glucose),
64 new SoundRain(glucose).setEligible(false),
65 new SoundSpikes(glucose).setEligible(false),
66 new FaceSync(glucose),
67
68 // Jack
69 new Swim(glucose),
70 new Balance(glucose),
71
72 // Tim
73 new TimPlanes(glucose),
74 new TimPinwheels(glucose),
75 new TimRaindrops(glucose),
76 new TimCubes(glucose),
77 // new TimTrace(glucose),
78 new TimSpheres(glucose),
79
80 // Ben
81 //new Sandbox(glucose),
82 new TowerParams(glucose),
83 new DriveableCrossSections(glucose),
84 new GranimTestPattern2(glucose),
85
86 // Sam
87 new JazzRainbow(glucose),
88
89 // Arjun
90 new TelevisionStatic(glucose),
91 new AbstractPainting(glucose),
92 new Spirality(glucose),
93
94 // Basic test patterns for reference, not art
95 new TestCubePattern(glucose),
96 new TestTowerPattern(glucose),
97 new TestProjectionPattern(glucose),
98 new TestStripPattern(glucose),
99 new TestBassMapping(glucose),
100 new TestFloorMapping(glucose),
101 new TestSpeakerMapping(glucose),
102 // new TestHuePattern(glucose),
103 // new TestXPattern(glucose),
104 // new TestYPattern(glucose),
105 // new TestZPattern(glucose),
106
107 };
108 }
109
110 LXTransition[] transitions(GLucose glucose) {
111 return new LXTransition[] {
112 new DissolveTransition(lx),
113 new SwipeTransition(glucose),
114 new FadeTransition(lx),
115 };
116 }
117
118 LXEffect[] effects(GLucose glucose) {
119 return new LXEffect[] {
120 new FlashEffect(lx),
121 new BoomEffect(glucose),
122 //new DesaturationEffect(lx),
123 //new ColorFuckerEffect(glucose),
124 new DualBlender(glucose),
125 };
126 }