Skip to content
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

Add helper for the The Curse of Arrav quest #1833

Merged
merged 60 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
bf8b0b6
progress
pajlada Nov 9, 2024
2da24ea
progress 2
pajlada Nov 9, 2024
19f6d68
why lag
pajlada Nov 9, 2024
65e3f38
only pass once conditions with list of requirements / logictype
pajlada Nov 9, 2024
59f0ef8
progress
pajlada Nov 9, 2024
7cb8b34
more progress
pajlada Nov 10, 2024
6df98b5
test: Add puzzle test from Avsynthe
pajlada Nov 12, 2024
bd54ee7
test: Add puzzle test from Zoinkwiz
pajlada Nov 12, 2024
dfd64d0
fix: Add teleport requirement to start
pajlada Nov 12, 2024
1780ce6
random refactor
pajlada Nov 12, 2024
73cff5e
refactor: make free inv requirement a class member
pajlada Nov 12, 2024
074134e
refactor: don't use triple-slash comments for sections
pajlada Nov 12, 2024
df77636
refactor: make `insideTomb` ZoneRequirement a class member
pajlada Nov 12, 2024
80e7c3c
nit: Supress the `field can be local` lint
pajlada Nov 12, 2024
bda646c
fix: Quest step types
pajlada Nov 12, 2024
20ec362
fix: remove unused variables
pajlada Nov 12, 2024
29969be
nit: remove commented out code
pajlada Nov 12, 2024
506d032
Reword the Protect from Melee phrasing from Arrav boss fight
pajlada Nov 12, 2024
a8484bb
nit: reword directions in "Tomb Raiding"
pajlada Nov 12, 2024
25a7430
nit: remove some empty lines
pajlada Nov 12, 2024
76a6a45
nit: ungender the golem
pajlada Nov 12, 2024
99f5fbe
refactor: make insideTombSecondFloorReq a class member
pajlada Nov 12, 2024
56db84c
nit: Reword combat gear/prayer recommendation texts
pajlada Nov 12, 2024
8e262dc
refactor: make `finishedTilePuzzle` a class member
pajlada Nov 12, 2024
11ea4e7
refactor: Clean up step 12
pajlada Nov 12, 2024
cb47460
refactor: cleanup/clarify early tomb steps
pajlada Nov 12, 2024
325965a
remove already-finished comment, remove never-reachable conditional s…
pajlada Nov 12, 2024
dd7a23e
variable renames/rewording of canopic jar stuff
pajlada Nov 12, 2024
a40a9e1
polish
pajlada Nov 16, 2024
ee9f88f
tiny code polish
pajlada Nov 16, 2024
44af4ad
disable new sidebar step
pajlada Nov 16, 2024
3e9c07c
add copyright block to all newly added files
pajlada Nov 16, 2024
96d981d
remove some more unused imports
pajlada Nov 16, 2024
15653a7
better document BasicQuestHelper's setupStep
pajlada Nov 16, 2024
45eb9a1
Remove conditionforstep comment for getDisplayText
pajlada Nov 16, 2024
6031038
undo step-highlight-checker
pajlada Nov 16, 2024
c0e1e28
Remove unused imports from BasicQuestHelper
pajlada Nov 16, 2024
86d93ec
Add optimal quest order, optimal ironman order, and release order
pajlada Nov 16, 2024
8b21fcb
wiki link now works without a redirect
pajlada Nov 16, 2024
58d8c96
remove previously-added-but-now-unused Conditions ctor
pajlada Nov 16, 2024
ecf59f5
more asserts for new ObjectCondition ctor
pajlada Nov 16, 2024
9420028
remove some test declarations
pajlada Nov 16, 2024
7bdcdeb
Undo change to the shortestPath logic
pajlada Nov 16, 2024
57a085c
remove custom ObjectStep toString function
pajlada Nov 16, 2024
9da19c1
undo reformat
pajlada Nov 16, 2024
9fcc422
Undo import changes to QuestStep
pajlada Nov 16, 2024
d54e418
remove unused imports, function & did some formatting in tests
pajlada Nov 16, 2024
9b574dd
add antivenom recommendation
pajlada Nov 16, 2024
9fe58c4
remove some comments
pajlada Nov 16, 2024
353358e
make varbit constant for lever states (since it's used in tests)
pajlada Nov 16, 2024
3afeccf
clean up KeysAndLevers test
pajlada Nov 16, 2024
1241f54
reformat tests
pajlada Nov 16, 2024
207fcb2
last refactors/requirement polishes
pajlada Nov 16, 2024
c7a457b
fix: Simplify mastaba door solution
Zoinkwiz Nov 17, 2024
99891dd
fix: Simplify tile puzzle in CoA
Zoinkwiz Nov 17, 2024
cc16c1f
Remove now-unused tests in KeysAndLeversTest.java
pajlada Nov 17, 2024
598a17a
replace log.info with log.debug
pajlada Nov 17, 2024
f872332
Clean up teleport recommendations in sections
pajlada Nov 18, 2024
0977c73
fix NPE on launch
pajlada Nov 18, 2024
18b2d00
final polish
pajlada Nov 18, 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
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ dependencies {
testImplementation group: "org.junit.jupiter", name: "junit-jupiter-engine", version: junitVersion

testImplementation group: 'org.mockito', name:'mockito-core', version: "4.11.0" // runelite uses 3.1.0
testImplementation group: 'org.mockito', name:'mockito-inline', version: "4.11.0"
testImplementation(group: 'com.google.inject.extensions', name:'guice-testlib', version: "4.1.0") {
exclude group: 'com.google.inject', module: 'guice' // already provided by runelite
}
Expand Down
Loading
Loading