summaryrefslogtreecommitdiffhomepage
path: root/cooler/script.js
blob: 3425b7fd58f7db88c069c5b10540420b67759eaa (plain) (blame)
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
gsap.registerPlugin(TextPlugin, EasePack);

var tl = gsap.timeline({defaults: {duration: 2, ease: "none"}});






const elts = {
    text1: document.getElementById("text1"),
    text2: document.getElementById("text2")
};

const texts = [
    "L",
    "A",
    "R",
    "S",
];

const morphTime = 1;
const cooldownTime = 0.25;

let textIndex = texts.length - 1;
let time = new Date();
let morph = 0;
let cooldown = cooldownTime;

elts.text1.textContent = texts[textIndex % texts.length];
elts.text2.textContent = texts[(textIndex + 1) % texts.length];

function doMorph() {
    morph -= cooldown;
    cooldown = 0;

    let fraction = morph / morphTime;

    if (fraction > 1) {
        cooldown = cooldownTime;
        fraction = 1;
    }

    setMorph(fraction);
}

function setMorph(fraction) {
    elts.text2.style.filter = `blur(${Math.min(8 / fraction - 8, 100)}px)`;
    elts.text2.style.opacity = `${Math.pow(fraction, 0.4) * 100}%`;

    fraction = 1 - fraction;
    elts.text1.style.filter = `blur(${Math.min(8 / fraction - 8, 100)}px)`;
    elts.text1.style.opacity = `${Math.pow(fraction, 0.4) * 100}%`;

    elts.text1.textContent = texts[textIndex % texts.length];
    elts.text2.textContent = texts[(textIndex + 1) % texts.length];
}

function doCooldown() {
    morph = 0;

    elts.text2.style.filter = "";
    elts.text2.style.opacity = "100%";

    elts.text1.style.filter = "";
    elts.text1.style.opacity = "0%";
}

function animate() {
    requestAnimationFrame(animate);

    let newTime = new Date();
    let shouldIncrementIndex = cooldown > 0;
    let dt = (newTime - time) / 1000;
    time = newTime;

    cooldown -= dt;

    if (cooldown <= 0) {
        if (shouldIncrementIndex) {
            textIndex++;
        }

        doMorph();
    } else {
        doCooldown();
    }
}

animate();

flaggy_neutral = document.getElementById("flaggy_neutral");
flaggy_happy = document.getElementById("flaggy_happy");
flaggy_sad = document.getElementById("flaggy_sad");
all_flaggies = [flaggy_sad, flaggy_happy, flaggy_neutral];
// Make the DIV element draggable:

for (let i = 0; i < all_flaggies.length; i++) {
    dragElement(all_flaggies[i]);
}


let rotCount = 0;
let check = null

function dragElement(elmnt) {
    var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
    if (document.getElementById(elmnt.id + "header")) {
        // if present, the header is where you move the DIV from:
        document.getElementById(elmnt.id + "header").onmousedown = dragMouseDown;
    } else {
        // otherwise, move the DIV from anywhere inside the DIV:
        elmnt.onmousedown = dragMouseDown;
    }

    function dragMouseDown(e) {
        if (check === null) {
            check = prompt("Is L.A.R.S. the best CTF team in the world?", "Yes")
        }
        if (check.toLowerCase() !== "yes") {
            flaggy_neutral.style.display = "none";
            flaggy_sad.style.display = "block";
            flaggy_happy.style.display = "none";

            alert("You are not allowed to pull out the flaggy until you admit that L.A.R.S. is the best CTF team in the world!")
            check = null;
            return;
        }
        flaggy_neutral.style.display = "none";
        flaggy_sad.style.display = "none";
        flaggy_happy.style.display = "block";


        e = e || window.event;
        e.preventDefault();
        // get the mouse cursor position at startup:
        pos3 = e.clientX;
        pos4 = e.clientY;
        document.onmouseup = closeDragElement;
        // call a function whenever the cursor moves:
        document.onmousemove = elementDrag;
    }

    function elementDrag(e) {

        e = e || window.event;
        e.preventDefault();
        // calculate the new cursor position:

        pos2 = pos4 - e.clientY;
        pos3 = e.clientX;
        pos4 = e.clientY;
        // set the element's new position:
        let angle = Math.floor(Math.random() * 20) - 10;

        for (let i = 0; i < all_flaggies.length; i++) {
            let elmnt = all_flaggies[i];
            elmnt.style.top = (elmnt.offsetTop - pos2) + "px";
            elmnt.style.left = (elmnt.offsetLeft - pos1) + "px";


            if (rotCount % 10 === 0)
                elmnt.style.transform = "rotate(" + angle + "deg)";
        }


        rotCount += 1;
    }

    elmnt.offsetTop - pos2

    function closeDragElement() {
        // stop moving when mouse button is released:
        document.onmouseup = null;
        document.onmousemove = null;
    }
}








var container = $("#demo"),
    _sentenceEndExp = /(\.|\?|!)$/g; //regular expression to sense punctuation that indicates the end of a sentence so that we can adjust timing accordingly

//this function just takes a string of text and splits it into an array based on the maximum length that should be allowed to exist in each line, and when it encounters the end of a sentence (ending in ".", "?", or "!"), it will force a line break too.
function buildChunks(text, maxLength) {
    if (maxLength === undefined) {
        return text.split(" ");
    }
    var words = text.split(" "),
        wordCount = words.length,
        chunk = [],
        chunks = [], i;
    for (i = 0; i < wordCount; i++){
        chunk.push(words[i]);
        if (_sentenceEndExp.test(words[i]) || i === wordCount - 1 || chunk.join(" ").length + words[i+1].length > maxLength) {
            chunks.push(chunk.join(" "));
            chunk = [];
        }
    }
    return chunks;
}


/* taken from https://codepen.io/GreenSock/pen/DpRrWV */
function machineGun(chunks, maxLength) {
    //in case "chunks" isn't an array, we'll build chunks automatically
    if (!(chunks instanceof Array)) {
        chunks = buildChunks(chunks, maxLength);
    }

    var tl = new TimelineMax({delay:0.6, repeat:2, repeatDelay:4}),
        time = 0,
        chunk, element, duration, isSentenceEnd, i;

    for (i = 0; i < chunks.length; i++) {
        chunk = chunks[i];
        isSentenceEnd = _sentenceEndExp.test(chunk) || (i === chunks.length - 1);
        element = $("<h3>" + chunk + "</h3>").appendTo(container);
        duration = Math.max(0.5, chunk.length * 0.08); //longer words take longer to read, so adjust timing. Minimum of 0.5 seconds.
        if (isSentenceEnd) {
            duration += 0.5; //if it's the last word in a sentence, drag out the timing a bit for a dramatic pause.
        }
        //set opacity and scale to 0 initially. We set z to 0.01 just to kick in 3D rendering in the browser which makes things render a bit more smoothly.
        TweenLite.set(element, {autoAlpha:0, scale:0, z:0.01});
        //the SlowMo ease is like an easeOutIn but it's configurable in terms of strength and how long the slope is linear. See https://www.greensock.com/v12/#slowmo and https://api.greensock.com/js/com/greensock/easing/SlowMo.html
        tl.to(element, duration, {scale:1.2,  ease:SlowMo.ease.config(0.25, 0.9)}, time)
            //notice the 3rd parameter of the SlowMo config is true in the following tween - that causes it to yoyo, meaning opacity (autoAlpha) will go up to 1 during the tween, and then back down to 0 at the end.
            .to(element, duration, {autoAlpha:1, ease:SlowMo.ease.config(0.25, 0.9, true)}, time);
        time += duration - 0.05;
        if (isSentenceEnd) {
            time += 0.5; //at the end of a sentence, add a pause for dramatic effect.
        }
    }
}

machineGun("We are L.A.R.S. We win every CTF. We are the best in the World. No one can defeat us. We never lose. We always win. We take all flags and we don't give them back. You should be scared, because we also take your flag.", 12);


const canvas = document.getElementById('flags')

const jsConfetti = new JSConfetti({ canvas })

function fire() {
    jsConfetti.addConfetti({
        emojis: ['đŸŗī¸â€đŸŒˆ', '🚩ī¸', 'đŸŗī¸â€âš§ī¸', '🏴‍☠ī¸', 'đŸŗī¸', '🏴'],
    })
    setTimeout(fire, 700)
}
fire()