Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bus-bunching #39

Merged
merged 6 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ __pycache__/
*.webm
node_modules/
build/
devbox.*
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
10 changes: 10 additions & 0 deletions experiences/bus-bunching/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"id": "bus-bunching",
"type": "web",
"title": "Bus Bunching",
"description": "Bus traffic simulation",
"action_hints": ["change the number of buses", "change the number of stops", "pause a bus on your phone"],
"layout": "full",
"lifetime": 180,
"queueable": true
}
61 changes: 61 additions & 0 deletions experiences/bus-bunching/controls/lib/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/** @jsxImportSource @emotion/react */
import { css } from "@emotion/react"
import React, { useCallback } from "react"
import { useMessaging } from "@footron/controls-client"
import { Slider } from "@material-ui/core"

const containerStyle = css`
padding: 16px;
overflow-x: hidden;

p {
margin: 0 0 16px;
}
`

const ControlsComponent = () => {
const { sendMessage } = useMessaging()

const updateBusCount = useCallback(
async (event, value) => {
await sendMessage({ type: "busCount", value: value })
},
[sendMessage]
)

const updateStopCount = useCallback(
async (event, value) => {
await sendMessage({ type: "stopCount", value: value })
},
[sendMessage]
)

return (
<div css={containerStyle}>
<p>
<b>Change the number of buses!</b>
</p>
<Slider
min={1}
max={10}
onChange={updateBusCount}
step={1}
marks
defaultValue={3}
/>
<p>
<b>Change the number of bus stops!</b>
</p>
<Slider
min={1}
max={20}
onChange={updateStopCount}
step={1}
marks
defaultValue={5}
/>
</div>
)
}

export default ControlsComponent
Binary file added experiences/bus-bunching/thumb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
78 changes: 78 additions & 0 deletions experiences/bus-bunching/web/fader.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
var fader_defaults = {
in: 500,
stay: 2000,
out: 500,
delaynext: 1000,
};

function fader_set_defaults(new_defaults) {
var attrs = ["in", "stay", "out", "delaynext"];
for (var ind = 0; ind < attrs.length; ind++) {
if (new_defaults[attrs[ind]]) {
fader_defaults[attrs[ind]] = new_defaults[attrs[ind]];
}
}
}

function fader_start() {
var fades = document.querySelectorAll(".fader");
if (fades.length == 0) {
return;
}

var events = [];
for (var ind = 0; ind < fades.length; ind++) {
events.push({
objref: fades[ind],
in: fades[ind].dataset.in
? Number(fades[ind].dataset.in)
: fader_defaults.in,
stay: fades[ind].dataset.stay
? Number(fades[ind].dataset.stay)
: fader_defaults.stay,
out: fades[ind].dataset.out
? Number(fades[ind].dataset.out)
: fader_defaults.out,
delaynext: fades[ind].dataset.delaynext
? Number(fades[ind].dataset.delaynext)
: fader_defaults.delaynext,
});
}
main_fader(events, 0);
}

var event_count = 0;

function main_fader(events, ind) {
var evt = events[ind];

event_count += 1;
$(evt.objref).fadeIn(evt.in, function () {
setTimeout(function () {
$(evt.objref).fadeOut(evt.out, function () {
event_count -= 1;
});
}, evt.stay);
});

if (ind < events.length - 1) {
setTimeout(function () {
main_fader(events, ind + 1);
}, evt.delaynext);
} else {
setTimeout(function () {
try_to_loop(events);
}, evt.delaynext);
}
}

function try_to_loop(events) {
// loop back to the beginning
if (event_count > 0) {
setTimeout(function () {
try_to_loop(events);
}, 1000);
} else {
main_fader(events, 0);
}
}
Loading
Loading