The Neo-Noir project was realized as a validation project for Isaac Pante's "Publication Numérique" class. The basic idea was to create an interactive cyberpunk story easily accessible and integrable on the web. Therefore, the project was made using web-development technologies such as JavaScript (ES6), HTML5 and CSS3.
This is a story where you are the hero. You finish your shift and decide to go get a drink at the bar. What happens next depends on you!
The data structure is fairly simple:
const story = {
scene1: {
text: () => `some text`,
choices: [ {
option: () => `option 1 text`,
action: () => {
// list of actions
}
},
{
option: () => `option 2 text`,
action: () => {
// list of actions
}
},
{
option: () => `option 3 text`,
action: () => {
// list of actions
}
}
]
},
scene2: {
// ...
}
}
All the functions starting the game, loading the texts, displaying the choices and playing the musics are well integrated. To continue the story, you just need to add some scenes and make sure you redirect the user to the correct scene after an interaction with the choices.
To do so, call these functions:
// to load the next scene:
loadNextText(story.myScene);
// to load a new music:
changeMusic("./audio/my_music.mp3");
// to modify and save game statistics, use the following object:
status.myCustomStatus = //something
// to save your stats, use this function:
localStorage.setItem('game', JSON.stringify(status));
That should be it! Have fun playing the game!
This section presents the future updates that I would like to implement:
- Extract the
const story
and make it a .JSON external file - Create a
save()
function in order to facilitate code-reading - Continue the story
- To be determined...
This story has been coded with musics in mind. For copyright reasons, all the musics were changed for silent sound files. In order of appearance, the songs are:
- Tainted with one kiss by DEADLIFE
- Femme Fatale by Perturbator
- Resonance by HOME
- Turbo Killer by Carpenter Brut
- Days of Thunder by The Midnight
- Limelight by YOTA
- Gloria by The Midnight
- Rust by El Huervo
- Untitled by The Green Kingdom
If you want to live the full experience, please consider buying the artists' musics and putting the audio files inside the ./audio
folder. Don't forget to rename them in order for the program to find them!