Fix accidental bork removing people's patterns from list
[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
26 LXPattern[] patterns(GLucose glucose) {
27 return new LXPattern[] {
28 new ShiftingPlane(glucose),
29 new AskewPlanes(glucose),
30 new Swarm(glucose),
31 new SpaceTime(glucose),
32 new HelixPattern(glucose).setEligible(false),
33 new Pong(glucose),
34 new Noise(glucose),
35 new Blinders(glucose),
36 new CrossSections(glucose),
37 new Psychedelia(glucose),
38 new CubeEQ(glucose).setEligible(false),
39 new PianoKeyPattern(glucose).setEligible(false),
40 new GlitchPlasma(glucose),
41 new FireEffect(glucose).setEligible(false),
42 new StripBounce(glucose),
43 new SoundRain(glucose).setEligible(false),
44 new SoundSpikes(glucose).setEligible(false),
45 new FaceSync(glucose),
46
47 // Jack
48 new Swim(glucose),
49 // new Breathe(glucose),
50
51 new TimPlanes(glucose),
52 new TimPinwheels(glucose),
53 new TimRaindrops(glucose),
54 new TimCubes(glucose),
55 // new TimTrace(glucose),
56 new TimSpheres(glucose),
57
58 // Ben
59 new DriveableCrossSections(glucose),
60 new GranimTestPattern2(glucose),
61
62 // Sam
63 new JazzRainbow(glucose),
64
65 // Basic test patterns for reference, not art
66 new TestCubePattern(glucose),
67 new TestTowerPattern(glucose),
68 new TestProjectionPattern(glucose),
69 new TestStripPattern(glucose),
70 // new TestHuePattern(glucose),
71 // new TestXPattern(glucose),
72 // new TestYPattern(glucose),
73 // new TestZPattern(glucose),
74
75 };
76 }
77
78 LXTransition[] transitions(GLucose glucose) {
79 return new LXTransition[] {
80 new DissolveTransition(lx),
81 new SwipeTransition(glucose),
82 new FadeTransition(lx),
83 };
84 }
85
86 LXEffect[] effects(GLucose glucose) {
87 return new LXEffect[] {
88 new FlashEffect(lx),
89 new BoomEffect(glucose),
90 new DesaturationEffect(lx),
91 };
92 }
93