Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
c2a6828
migrated api, fixed toolchain (maybe)
tenios-sb Sep 20, 2023
ad5f4d4
fixed heads being wonky when nicked
tenios-sb Oct 16, 2023
99e46ea
fixed map loading + added assets
tenios-sb Mar 15, 2024
11a4394
Initial scan commit, scans newly walked component!
UnclaimedBloom6 Jun 14, 2024
e599a6b
Room detection works
UnclaimedBloom6 Jun 14, 2024
09cbde5
Scanning no longer adds duplicate components to rooms
UnclaimedBloom6 Jun 14, 2024
fd9d18b
Scanning works!
UnclaimedBloom6 Jun 15, 2024
92d7259
Rooms properly detected
UnclaimedBloom6 Jun 15, 2024
487b2dc
Room generation
UnclaimedBloom6 Jun 15, 2024
2865c6c
Polish scanning, waypoints back
UnclaimedBloom6 Jun 15, 2024
f1af020
Clean up
UnclaimedBloom6 Jun 15, 2024
8f89286
Fixed secret action bar setting secrets in wrong room
UnclaimedBloom6 Jun 16, 2024
15c34bf
Changed chest waypoint size to match chest hitbox
UnclaimedBloom6 Jun 16, 2024
b8170e9
Fix loading unknown puzzle names from tab list
UnclaimedBloom6 Jun 16, 2024
d063e59
Door colors are correct now
UnclaimedBloom6 Jun 16, 2024
10713a8
Fix weird shaped Entrance room
UnclaimedBloom6 Jun 16, 2024
2126923
Socket Stuff
UnclaimedBloom6 Jun 17, 2024
98edad4
Beta ready maybe
UnclaimedBloom6 Jun 19, 2024
0ee29bd
Stop scanner from scanning the same place multiple times
UnclaimedBloom6 Jun 19, 2024
b4a9f86
Fix typo getMetaData -> getMetadata
UnclaimedBloom6 Jun 19, 2024
cc5c7fc
Add null checks to secret collection
UnclaimedBloom6 Jun 19, 2024
15482b3
Bug fixes
UnclaimedBloom6 Jun 20, 2024
eb06c56
Remove mappings stuff
UnclaimedBloom6 Jun 20, 2024
bff4efe
Fix gray checkmark on puzzle in /bm preview map
UnclaimedBloom6 Jun 20, 2024
5aee666
Change end stats regex (Hypixel changed MM message
UnclaimedBloom6 Aug 16, 2024
6f998db
Increase secret actionbar delay from 1s to 1.5s
UnclaimedBloom6 Aug 16, 2024
3484a14
Blacklist the /out/ directory in the build.sh script
UnclaimedBloom6 Aug 16, 2024
cf56a4e
Fix inconsistent rotation whe entering 1x4 rooms on the opposite side…
UnclaimedBloom6 Aug 16, 2024
cfb2d62
Add missing secret data for non-rare rooms
UnclaimedBloom6 Aug 16, 2024
a6352de
Update build.sh
UnclaimedBloom6 Aug 18, 2024
1b0c4bd
Room rotation reliability
UnclaimedBloom6 Sep 7, 2024
aefdcde
Update metadata version
UnclaimedBloom6 Sep 10, 2024
16a907e
fix memory leak with images not getting destroyed (#49)
DocilElm Sep 13, 2024
b4b2451
Calculate speed score (#51)
tuzu128 Dec 20, 2024
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
6 changes: 0 additions & 6 deletions .babelrc

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/main.yml

This file was deleted.

7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Data/roomdata.json
out
node_modules
node_modules
.gradle
.idea
build
.vscode
12 changes: 12 additions & 0 deletions Components/Door.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ class Door {

this.horizontal = horizontal
}

getX() {
return this.position.worldX
}

getZ() {
return this.position.worldY
}

toString() {
return `Door[(${this.getX()}, ${this.getZ()}), (${this.position.arrayX}, ${this.position.arrayY}) ${this,this.type}]`
}
}

export default Door
Loading