forked from andrea/homework5
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e45942cc48 | |||
|
|
577eb73b7b | ||
| 98458688f1 | |||
|
|
150e5424b5 |
@@ -1,101 +0,0 @@
|
||||
- [My proposal](#my-proposal)
|
||||
- [Basic Information](#basic-information)
|
||||
- [Video Game: nag a ram](#video-game-nag-a-ram)
|
||||
- [Game Mechanics](#game-mechanics)
|
||||
- [Technical Implementation](#technical-implementation)
|
||||
- [Use of AI](#use-of-ai)
|
||||
|
||||
# My proposal
|
||||
|
||||
## Basic Information
|
||||
|
||||
- Name: Yu Min Choi
|
||||
- ID: 20220899
|
||||
- [Repository](https://git.prototyping.id/20220899/homework5)
|
||||
|
||||
## Video Game: nag a ram
|
||||
|
||||
_**nag a ram**_ is an anagram game that helps English speakers improve problem-solving skills and build vocabulary.
|
||||
|
||||
> An anagram is a word or phrase made by using the letters of another word or phrase in a different order. For example, _silent_ and _listen_ are anagrams. _triangle_, _alerting_, _integral_, and _relating_ are all anagrams of one another.
|
||||
>
|
||||
> \*_nag a ram_ is an anagram of _anagram_.
|
||||
|
||||
### Game Mechanics
|
||||
|
||||
**How to Play**
|
||||
|
||||
1. A base word appears on screen. The player can choose the number of letters beforehand or leave it random.
|
||||
2. Drag the letter tiles to rearrange them into a valid anagram before time runs out. The time limit scales with word length — longer words get more time.
|
||||
3. Press **Complete** to submit the answer.
|
||||
4. If correct, the player earns points and can save the word to a personal vocabulary list for later review.
|
||||
5. If incorrect or time runs out, one life is lost. The player has 5 lives per session. Once all lives are spent, there is a 5-minute cooldown before the game can be restarted.
|
||||
|
||||
**Constraints**
|
||||
|
||||
- Word: Single word only
|
||||
- Time: Scales with word length
|
||||
- Lives: 5 per session
|
||||
|
||||
**Scoring**
|
||||
|
||||
- Base points: Awarded per correct answer, scaled by word length
|
||||
- Streak bonus: Multiplied by consecutive correct answers
|
||||
- Easter egg: Double points for palindrome answers
|
||||
|
||||
**Interface**
|
||||
|
||||
The letter tiles are designed to resemble wooden blocks, giving the game a tactile, physical feel reminiscent of classic word games like Scrabble.
|
||||
|
||||

|
||||
|
||||
### Technical Implementation
|
||||
|
||||
[**Random Word API**](https://random-word-api.herokuapp.com/)
|
||||
|
||||
The base word is randomly generated using the Random Word API with a length parameter.
|
||||
|
||||
For example,
|
||||
https://random-word-api.herokuapp.com/word?length=9 returns:
|
||||
|
||||
```json
|
||||
["triangle"]
|
||||
```
|
||||
|
||||
[**Anagramica API**](http://anagramica.com/api)
|
||||
|
||||
Once base word fetched from the Random Word API, the Anagramica API is used to verify at least one valid anagram (excluding the base word itself) exists. If the player's submission matches any word in the array, the answer is validated.
|
||||
|
||||
For example, http://www.anagramica.com/best/:triangle returns:
|
||||
|
||||
```json
|
||||
{
|
||||
"best": ["alerting", "altering", "integral", "relating", "triangle"]
|
||||
}
|
||||
```
|
||||
|
||||
**Word module**
|
||||
|
||||
- `fetchRandomWord(length)`: Fetches a random word from the Random Word API with the specified or random length
|
||||
- `fetchAnagrams(word)`: Fetches valid anagrams from the Anagramica API
|
||||
- Uses `.filter()` to exclude the base word and ensure at least one valid anagram exists
|
||||
- `validateAnswer(answer, anagrams)`: Checks if the player's input matches a valid anagram
|
||||
- Uses `.includes()` to search the anagram array
|
||||
- `isPalindrome(answer)`: Checks if the given word is a palindrome
|
||||
- Uses recursion to compare letters inward from both ends
|
||||
|
||||
**Game class**
|
||||
|
||||
Manages state: score, timer, lives, streak
|
||||
|
||||
- `addScore(wordLength)`: Calculates and adds points based on word length, applies the streak multiplier, and doubles points if the palindrome check passes
|
||||
- `startTimer(wordLength, onTick, onTimeUp)`: Starts a countdown scaled to word length
|
||||
- `stopTimer()`: Stops the timer, either when the player submits an answer or when time runs out
|
||||
- `deductLife()`: Removes a life and resets the streak
|
||||
- `isGameOver()`: Checks if all lives have been used
|
||||
|
||||
**Vocabulary class**
|
||||
|
||||
## Use of AI
|
||||
|
||||
AI was used to paraphrase and refine the written content of this proposal.
|
||||
82
PROPOSAL_20240935.md
Normal file
82
PROPOSAL_20240935.md
Normal file
@@ -0,0 +1,82 @@
|
||||
# My proposal
|
||||
|
||||
My name is Makhabbat, and I am a sophomore at KAIST doing my Bachelor's degree in Industrial Design (ID: 20240935). The URL to the forked repository: [git.prototyping.id](https://git.prototyping.id/20240935/homework5).
|
||||
|
||||
<!-- I want to make atypical infinite runner game usually made for ADHD children. When I was in China, I had a chance to play ADHD-DTx game made for ADHD children and proven to improve their condition. You can't download or even find information about it outside the research paper, so I wanted to make one for myself, cause I drift a lot and would like to train my attention somehow.
|
||||
This is an extreme multitasking game, requiring you to do various things at once and fast.
|
||||
The game has 5 lanes instead of typical 3, when game starts there will be text presented about which things you have to be collecting - various things will be falling along the game so you will have to hit only the ones you were instructed to at the beginning of the game, also one in a while you will have to pass through 'gates' and you're supposed to pass through the one that is answer to the question given several seconds before, you also have to gather basic awards along the lanes and avoid basic obstacles.
|
||||
In the original game that we played, there is an EEG headset that goes along the tablet that records the level of attentiveness to track, however I am thinking it can be just a something that gets reduced when you make too many mistakes.
|
||||
I want to make it using three.js, because my reason for taking this course is to eventually be able to use three.js. -->
|
||||
|
||||
# NeuroRunner: A Multitasking Cognitive Training Game
|
||||
|
||||
NeuroRunner is an atypical, **cognitively demanding** _infinite runner_ inspired by digital therapeutics (DTx) designed for children with ADHD.
|
||||
In Zhejiang University Summer Program, I had the chance to play a clinically tested ADHD-focused game that significantly improved sustained attention, but the **game isn’t publicly available** and information about it exists only inside [research papers](https://pubmed.ncbi.nlm.nih.gov/41490776/).
|
||||
|
||||
<img src="./IMG_9134.jpg" width="45%">
|
||||
<img src="./IMG_9135.jpg" width="45%">
|
||||
|
||||
This project is my attempt to recreate that idea for myself — as someone who often drifts and wants a way to actively train attention through gameplay.
|
||||
The result is an extreme multitasking runner built with three.js, designed to overload and strengthen attentional control, working memory, and task-switching.
|
||||
|
||||
# Core Concept
|
||||
|
||||
NeuroRunner is not a typical runner with 3 lanes — it uses 5 lanes, faster pacing, and continuous task switching.
|
||||
Players must constantly track multiple rule sets at the same time, rewarding precision and penalizing mind-wandering.
|
||||
|
||||
The goal is to maintain cognitive engagement.
|
||||
|
||||
# Gameplay Description
|
||||
|
||||
1. Five-Lane Movement
|
||||
|
||||
- move between 5 horizontal lanes instead of the standard 3.
|
||||
- forces higher spatial attention.
|
||||
|
||||
2. Instruction Phase
|
||||
|
||||
At the start of each run:
|
||||
|
||||
- The player is shown a **type of target item they must collect**.
|
||||
- Throughout the game, objects fall randomly on the screen.
|
||||
- Players must collect only the instructed items and avoid irrelevant ones using the **hit putton** on the right.
|
||||
|
||||
This trains selective attention and working memory
|
||||
|
||||
3. Cognitive Gate Questions
|
||||
|
||||
Every now and then:
|
||||
|
||||
1. A question appears (simple math or logic).
|
||||
2. Several seconds later, gates along all 5 lanes appears ahead.
|
||||
3. The player must pass through the gate corresponding to the correct answer.
|
||||
|
||||
This trains delayed **recall, task switching, and decision-making under pressure**
|
||||
|
||||
4. Rewards & Obstacles
|
||||
|
||||
- Basic pickups that increase score
|
||||
- Standard obstacles that must be avoided
|
||||
|
||||
5. Attentiveness Meter
|
||||
|
||||
The original DTx game used an EEG headset to track attentiveness in real time.
|
||||
|
||||
For this project, I replace that hardware with a mistake-based attentiveness meter.
|
||||
The meter decreases when:
|
||||
- You collect wrong items
|
||||
- You miss target items
|
||||
- You pass through the wrong gate
|
||||
- You hit obstacles
|
||||
When the meter reaches zero → game over.
|
||||
|
||||
This approximates attentional lapse tracking without requiring EEG hardware.
|
||||
|
||||
# Library Used
|
||||
|
||||
I've been wanting to learn three.js since previous semester, so I want to try learning it, using this project.
|
||||
|
||||
# Challenges
|
||||
|
||||
Since this is a multitasking game, there will be a lot of things going on at once, I can't even imagien how I am gonna do that.
|
||||
|
||||
120
PROPOSAL_20254499.md
Normal file
120
PROPOSAL_20254499.md
Normal file
@@ -0,0 +1,120 @@
|
||||
# Topic
|
||||
Finding the Best Seat: Cafe - Study Survival Game
|
||||
|
||||
**Name:** Jieun Lee
|
||||
**Student ID:** 20254499
|
||||
**My Fork URL:** https://git.prototyping.id/20254499/homework5.git
|
||||
|
||||
## 1. Game Overview
|
||||
This project is a top-view mini video game set in a cafe.
|
||||
The player controls a student character who wants to stay focused and complete their study session.
|
||||
The goal is to maintain concentration until the study progress reaches 100%, while dealing with moving NPCs, noise, and changing seat conditions.
|
||||
|
||||
=============================================================================
|
||||
|
||||
## 2. Game Mechanics
|
||||
# 2.1 what does the user have to accomplish?
|
||||
The player has to help the character complete their work within a limited time while maintaining a positive focus level.
|
||||
|
||||
- Each seat has different conditions such as noise level, proximity to moving NPCs, and overall distractions.
|
||||
- NPCs move around the cafe and dynamically affect the player’s focus.
|
||||
- The player must continuously decide whether to stay, move to another seat, or take actions to recover focus.
|
||||
|
||||
|
||||
# 2.2 How do you win or lose?
|
||||
**Winning condition:**
|
||||
The study progress reaches 100% (visualized as a progress bar).
|
||||
|
||||
**Losing condition:**
|
||||
The focus level reaches 0, and the character gives up and leaves the cafe.
|
||||
|
||||
|
||||
|
||||
# 2.3 What type of interactions are possible?
|
||||
- Move to another seat with arrow keys
|
||||
- Buy a drink or snack for a temporary focus boost
|
||||
- Avoid noisy or crowded zones
|
||||
- Respond to environmental changes caused by NPC movement
|
||||
|
||||
=============================================================================
|
||||
|
||||
## 3. Visual Style and Game Elements
|
||||
A top-view cafe layout with tables, seats, counter, entrance, and moving NPCs.
|
||||
|
||||
# 3.1 Main elements
|
||||
Player
|
||||
NPC customers
|
||||
Seats
|
||||
Focus meter
|
||||
Timer
|
||||
Drink counter / item zone
|
||||
UI text for score, level, and status
|
||||
|
||||
# 3.2 Visual tone
|
||||
Simple 2D shapes and icons
|
||||
Readable colors to distinguish quiet seats, noisy areas, and interactable places
|
||||
Cute but minimal design for clarity
|
||||
|
||||
# 3.3 reference images
|
||||
<img src="./ref1.png" width="45%">
|
||||
<img src="./ref2.png" width="45%">
|
||||
<img src="./ref3.jpg" width="45%">
|
||||
|
||||
=============================================================================
|
||||
|
||||
## 4. Implementation Plan
|
||||
# 4.1 Conditions
|
||||
if (gameState === "start") : Shows the start screen
|
||||
if (gameState === "play") : Runs the main gameplay
|
||||
if (focus <= 0) : Triggers game over when focus reaches 0
|
||||
if (workProgress === 100 && focus > 0) : Winning condition
|
||||
|
||||
# 4.2 Variables (not finalized yet!)
|
||||
- 'focus'
|
||||
- 'Distraction'
|
||||
- 'timer'
|
||||
- 'gameState'
|
||||
- 'currentSeatIndex'
|
||||
- etc..
|
||||
|
||||
# 4.3 Loops
|
||||
I will use loops to:
|
||||
- update all NPCs,
|
||||
- draw all seats,
|
||||
- and check nearby distractions.
|
||||
|
||||
# 4.4 Arrays and Objects
|
||||
I will store:
|
||||
- NPCs in an array,
|
||||
- seats in an array of objects.
|
||||
-> Each seat object will include information such as position, distraction level
|
||||
|
||||
# 4.5 Classes
|
||||
- 'Player' class
|
||||
- 'NPC' class
|
||||
|
||||
=============================================================================
|
||||
|
||||
## 5. Features Learned in Class
|
||||
This project will clearly use several programming elements learned in class:
|
||||
- basic p5.js drawing setup (e.g., rect(), ellipse())
|
||||
- conditionals
|
||||
- variables
|
||||
- loops
|
||||
- functions
|
||||
- arrays
|
||||
- objects
|
||||
- classes
|
||||
|
||||
=============================================================================
|
||||
|
||||
## 6. Main Challenges
|
||||
- Implementing the overall system itself will be a challenge as a beginner. Since it requires combining multiple elements such as movement, NPC behavior, and focus management into a cohesive game.
|
||||
- Balancing the game difficulty
|
||||
NPC movement and focus decrease should feel challenging but not unfair.
|
||||
- Making the cafe environment readable
|
||||
The player should understand which seats are better or worse without too much confusion.
|
||||
- Creating simple but believable NPC movement
|
||||
NPCs should make the cafe feel alive while still being manageable in code.
|
||||
- Designing a focus system that is easy to understand
|
||||
The focus meter should clearly reflect the effect of noise, movement, and drink items.
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 40 KiB |
Reference in New Issue
Block a user