Skip to content
This repository was archived by the owner on Aug 14, 2024. It is now read-only.

Fixes #58 #59

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ android {
dependencies {

implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'androidx.appcompat:appcompat:1.6.0'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation "androidx.test:core-ktx:1.4.0"
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation "androidx.test:core-ktx:1.5.0"
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}
47 changes: 44 additions & 3 deletions app/src/main/java/com/example/lemonade/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,10 @@ class MainActivity : AppCompatActivity() {
lemonImage = findViewById(R.id.image_lemon_state)
setViewElements()
lemonImage!!.setOnClickListener {
// TODO: call the method that handles the state when the image is clicked
clickLemonImage()
}
lemonImage!!.setOnLongClickListener {
// TODO: replace 'false' with a call to the function that shows the squeeze count
false
showSnackbar()
}
}

Expand All @@ -96,6 +95,29 @@ class MainActivity : AppCompatActivity() {
// lemonade making progression (or at least make some changes to the current state in the
// case of squeezing the lemon). That should be done in this conditional statement

when(lemonadeState) {
SELECT -> {
lemonadeState = SQUEEZE
lemonSize = lemonTree.pick()
squeezeCount = 0
}
SQUEEZE -> {
squeezeCount += 1
if(lemonSize == 0) {
lemonadeState = DRINK
} else {
lemonSize -= 1
}
}
DRINK -> {
lemonadeState = RESTART
lemonSize = -1
}
RESTART -> lemonadeState = SELECT
}

setViewElements()

// TODO: When the image is clicked in the SELECT state, the state should become SQUEEZE
// - The lemonSize variable needs to be set using the 'pick()' method in the LemonTree class
// - The squeezeCount should be 0 since we haven't squeezed any lemons just yet.
Expand All @@ -118,6 +140,25 @@ class MainActivity : AppCompatActivity() {
*/
private fun setViewElements() {
val textAction: TextView = findViewById(R.id.text_action)

when(lemonadeState) {
SELECT -> {
textAction.text = getString(R.string.lemon_select)
lemonImage!!.setImageResource(R.drawable.lemon_tree)
}
SQUEEZE -> {
textAction.text = getString(R.string.lemon_squeeze)
lemonImage!!.setImageResource(R.drawable.lemon_squeeze)
}
DRINK -> {
textAction.text = getString(R.string.lemon_drink)
lemonImage!!.setImageResource(R.drawable.lemon_drink)
}
RESTART -> {
textAction.text = getString(R.string.lemon_empty_glass)
lemonImage!!.setImageResource(R.drawable.lemon_restart)
}
}
// TODO: set up a conditional that tracks the lemonadeState

// TODO: for each state, the textAction TextView should be set to the corresponding string from
Expand Down
5 changes: 3 additions & 2 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/lemon_tree" />

</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>