Skip to content

Commit

Permalink
next = beginnign
Browse files Browse the repository at this point in the history
  • Loading branch information
fredeerock committed Apr 4, 2016
1 parent c7bcef9 commit 807d5d3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Causeway is an interactive poetry app and performance written by Vincent Cellucci with audio by Jesse Allison and visuals by Derick Ostrenko. Originally a part of Cellucci's book, An Easy Place / To Die, the poem "Causeway" was inspired by events following Hurricane Katrina. The piece can be experienced as a performance or by itself as a mobile application. When Causeway is put on as a performance Cellucci reads the poem aloud while audience members interact by tapping phrases from the poem on their mobile devices to collectively transform visuals displayed on a large projection. Each tap produces a sonic echo taken from Cellucci's voice and causes his words to ripple through the theater. As an application this experience is containerized on the mobile device so that many users over time contribute to an ongoing visualization.

## To Do
- [ ] Fix landing page
- [ ] Fix landing page reference to theater
- [ ] Fix Theater view so it refreshes on the proper section.
- [ ] Fix Theater view so its not just the last one that receives the colors
- [x] Fix Theater view so its not just the last one that receives the colors
- [ ] make last next button return to beginning
5 changes: 5 additions & 0 deletions app/m/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ <h1 onclick="causeSound.triggerCauseway();"><span class="mainTitle">Causeway</sp
secNum = secNum + 1;
socket.emit("section", secNum);
}

if(number ==1 && secNum ==33) {
secNum = 0;
socket.emit("section", secNum);
}

causeSound.loadSection(secNum);

Expand Down
2 changes: 1 addition & 1 deletion installation.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ io.sockets.on('connection', function (socket) {

if(username == "theater"){
theaterID = socket.id;
ioTheaters.push(socket.id);
// ioTheaters.push(socket.id);
console.log("Hello Theater: " + theaterID);
}

Expand Down

0 comments on commit 807d5d3

Please sign in to comment.