-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat: matchmaking game api #34
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made some comments that want to be addressed. That being said, I will write more. Good progress!
}] | ||
}], | ||
// elo: { | ||
// type: Float32Array, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small thing, but the elo is an integer and would almost never exceed 4000, so change to:
type: Int16Array
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a good catch. The elo is currently commented out, I think when the backend gets set up for recording scoring, then that change will be kept in mind.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like there's two code_generator.js
files- one here and another in utils
. There should only be one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will fix that! Thank you!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix Done!
// Only attach event listener if the button exists on the current page | ||
let back_to_main_button = document.getElementById("back-to-main-screen"); | ||
if (back_to_main_button) { | ||
back_to_main_button.addEventListener("click", function () { | ||
window.location.href = "main-screen.html"; // Navigate back to main screen | ||
}); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you put these lines right before the following lines:
let back_to_main_button_from_join = document.getElementById("back-to-main-screen-from-join"); if (back_to_main_button_from_join) { back_to_main_button_from_join.addEventListener("click", function () { window.location.href = "main-screen.html"; // Navigate back to main screen }); }
That way, a user that just created a team will be able to go back to main screen (and maybe join team instead).
Of course, we should probably delete the game with the previous game code as it may use lots of memory doing a bunch of create teams. OR, a user could exit out of the extension and do a million clicks on create team, so query for whether a user is already part of an active game (add something to userController.js
).
Currently, we can check whether a game has a particular user, but NOT vice-versa.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a good idea to think about, if the player 1 leaves the created team, do we delete their game? Or can they still join their game using the join button? Or what do we do if the player 2 is trying to join the abandoned game?
This is interesting, since I have quite a lot going on this week, I can work on this part next Sunday!
If these changes are required, then this Pull request will be delayed, but no rush, because it also requires everyone to have backend setup. We can first let everyone setup backend server.
console.error("Game ID not found in storage."); | ||
} | ||
|
||
// If Player 2 is waiting, start polling for game status |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small thing: could you change the comment above to:
// If waiting for Player 2, start polling for game status
because it looks like every 1.5 seconds, we're querying for whether player 2 has joined a game made by player 1.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's exactly what's happening, the WebSocket is handling multiple backend calls to check if player 2 has joined or not
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah ok. Then it looks good!
return; | ||
} | ||
const pollInterval = setInterval(() => { | ||
fetch(`http://localhost:3000/api/games/${gameId}`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Port 3000 could be running the background already (e.g. someone did npm run
for a react project), so maybe check for other available ports.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a just a test! In production, the backend API never changes. So for now if you run the backend on a different port, just modify the ports manually. Or to make things simple, I can setup a .env file for frontend in another Pull Request for someone to modify the port on frontend easily without having to update every single line that calls backend.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a just a test! In production, the backend API never changes. So for now if you run the backend on a different port, just modify the ports manually. Or to make things simple, I can setup a .env file for frontend later in another PR for someone to modify the port on frontend easily without having to update every single line that calls backend.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good for now!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good!
3da5ecb
to
6d65f57
Compare
Player Controls & Game Start Updates
✅ Summary
This PR implements Joining Player 1 and Player 2, ensuring:
waiting
→paired
→in_progress
).game-play-screen.html
.🔨 Changes Made
🛠️ Remaining Fix
game-play-screen.html
after game starts.START_GAME
event needs to trigger Player 2’s navigation.🔍 How to Test
in_progress
in the backend.Next Steps