summaryrefslogtreecommitdiff
path: root/android/SameGame/app/src/main/java
diff options
context:
space:
mode:
Diffstat (limited to 'android/SameGame/app/src/main/java')
-rw-r--r--android/SameGame/app/src/main/java/com/example/samegame/Box.java317
-rw-r--r--android/SameGame/app/src/main/java/com/example/samegame/GridRVAdapter.kt79
-rw-r--r--android/SameGame/app/src/main/java/com/example/samegame/MainActivity.kt290
-rw-r--r--android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Color.kt11
-rw-r--r--android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Theme.kt70
-rw-r--r--android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Type.kt34
6 files changed, 801 insertions, 0 deletions
diff --git a/android/SameGame/app/src/main/java/com/example/samegame/Box.java b/android/SameGame/app/src/main/java/com/example/samegame/Box.java
new file mode 100644
index 0000000..6bab739
--- /dev/null
+++ b/android/SameGame/app/src/main/java/com/example/samegame/Box.java
@@ -0,0 +1,317 @@
+/*
+Same Game - My first application built in Kotlin
+date: 19-III-2024
+code: Przemyslaw R. Pietraszczyk
+license: GPL v3
+IDE: Android Studio Iguana
+*/
+package com.example.samegame;
+
+import java.util.*;
+import java.lang.*;
+
+class Box {
+ int index;
+ int groupIndex;
+ String color;
+ int x, y;
+ boolean visit;
+ public List<String> groupList = new ArrayList<String>();
+ public List<Integer> listIndex = new ArrayList<Integer>();
+
+ public int value; // czy kolor (0) czy bialy (1)
+ public int resource;
+ public Box() {
+
+ visit = false;
+ value = 0;
+ }
+
+ public void setIndex(int n) {
+ int index = n;
+ }
+
+ public void setGroupIndex(int n) {
+ groupIndex = n;
+ }
+
+ public void setColorName(String c) {
+ color = c;
+ }
+
+ public void setVelocity(int _x, int _y) {
+ x = _x;
+ y = _y;
+ }
+
+ public int getGroupIndex() {
+ return groupIndex;
+ }
+
+ public String getColor() {
+ return color;
+ }
+
+ public int getVelocityY() {
+ return y;
+ }
+
+ public int getVelocityX() {
+ return x;
+ }
+
+ public Box get() {
+ return this;
+ }
+
+
+ public void like(String color, Box [][] squares, int y, int x, int origy, int origx)throws Exception, StackOverflowError {
+
+ if ( squares[y][x].getColor() != "white") {
+ if (squares[y][x].getColor().equals(color)) {
+ if (y >= 1) {
+ if (squares[y - 1][x].visit == false) {
+ squares[origy][origx].groupList.add(String.valueOf(squares[y][x].getGroupIndex()));
+ squares[origy][origx].listIndex.add(squares[y][x].getGroupIndex());
+
+ //like(color, squares, y-1, x, origy, origx);
+ try {
+ like(color, squares, y - 1, x, origy, origx);
+ //intelligence.add("3");
+ } catch (StackOverflowError s) {
+ like(color, squares, y - 1, x, origy, origx);
+ // intelligence.add("4");
+ }
+ }
+ squares[y][x].visit = true;
+ }
+ if (x >= 1) {
+ if (squares[y][x - 1].visit == false) {
+ squares[origy][origx].groupList.add(String.valueOf(squares[y][x].getGroupIndex()));
+ squares[origy][origx].listIndex.add(squares[y][x].getGroupIndex());
+
+ //like(color, squares, y, x-1 , origy, origx);
+ try {
+ like(color, squares, y, x - 1, origy, origx);
+ //intelligence.add("3");
+ } catch (StackOverflowError s) {
+ like(color, squares, y, x - 1, origy, origx);
+ // intelligence.add("4");
+ }
+ }
+ squares[y][x].visit = true;
+ }
+
+ if (y < 8) {
+ if (squares[y + 1][x].visit == false) {
+ squares[origy][origx].groupList.add(String.valueOf(squares[y][x].getGroupIndex()));
+ squares[origy][origx].listIndex.add(squares[y][x].getGroupIndex());
+
+ //like(color, squares, y+1, x, origy, origx);
+ try {
+ like(color, squares, y + 1, x, origy, origx);
+ //intelligence.add("3");
+ } catch (StackOverflowError s) {
+ like(color, squares, y + 1, x, origy, origx);
+ // intelligence.add("4");
+ }
+ }
+ squares[y][x].visit = true;
+ }
+ if (x < 5) {
+ if (squares[y][x + 1].visit == false) {
+ squares[origy][origx].groupList.add(String.valueOf(squares[y][x].getGroupIndex()));
+ squares[origy][origx].listIndex.add(squares[y][x].getGroupIndex());
+
+ //like(color, squares, y, x+1 , origy, origx);
+ try {
+ like(color, squares, y, x + 1, origy, origx);
+ //intelligence.add("3");
+ } catch (StackOverflowError s) {
+ like(color, squares, y, x + 1, origy, origx);
+ //intelligence.add("4");
+ }
+ }
+ squares[y][x].visit = true;
+ }
+ squares[y][x].visit = false;
+ }
+ }
+ }
+
+ // Mozliwe ze wogole nie potrzebne
+ public void blank() {
+ this.setColorName("white");
+ this.value = 1;
+
+ }
+
+ public void toUp(Box [][] squares, int y, int x) {
+
+ int n = 9;
+ String temp;
+ int v; // = new Box();
+ for(int i=0; i < n; i++){
+ for(int j=1; j < (n-i); j++){
+ //if(squares[y][j-1].getColor() != squares[y][j].getColor() && squares[y][j].getColor() == "white"){
+ //if(squares[y][j-1].getColor() != squares[y][j].getColor()){
+ if(squares[j-1][x].value > squares[j][x].value) {
+
+ //swap elements
+ temp = squares[j-1][x].getColor();
+ v = squares[j-1][x].value;
+ squares[j-1][x].setColorName(squares[j][x].getColor());
+ squares[j-1][x].value = squares[j][x].value;
+ squares[j][x].setColorName(temp);
+ squares[j][x].value = v;
+ }
+
+ }
+ }
+ }
+
+ public void toLeft(Box [][] squares, int y, int x) {
+
+ int n = 6;
+ String temp;
+ int v; // = new Box();
+ for(int i=0; i < n; i++){
+ for(int j=1; j < (n-i); j++){
+ //if(squares[y][j-1].getColor() != squares[y][j].getColor() && squares[y][j].getColor() == "white"){
+ //if(squares[y][j-1].getColor() != squares[y][j].getColor()){
+ if(squares[y][j-1].value > squares[y][j].value) {
+
+ //swap elements
+ temp = squares[y][j-1].getColor();
+ v = squares[y][j-1].value;
+ squares[y][j-1].setColorName(squares[y][j].getColor());
+ squares[y][j-1].value = squares[y][j].value;
+ squares[y][j].setColorName(temp);
+ squares[y][j].value = v;
+ }
+
+ }
+ }
+ }
+
+ public void removeDuplicates() {
+
+ List<String> tmp = new ArrayList<String> ();
+
+ for(String item:this.groupList){
+ boolean find = false;
+ for (String t:tmp) {
+ if (t.equals(item)){
+ find = true;
+ }
+ }
+ if (find == false) {
+ tmp.add(item);
+ }
+ }
+ this.groupList.clear();
+ this.groupList = tmp;
+ }
+
+ public void removeDuplicatesIndex() {
+
+ List<Integer> tmp = new ArrayList<Integer> ();
+
+ for(Integer item:this.listIndex){
+ boolean find = false;
+ for (Integer t:tmp) {
+ if (t.equals(item)){
+ find = true;
+ }
+ }
+ if (find == false) {
+ tmp.add(item);
+ }
+ }
+ this.listIndex.clear();
+ this.listIndex = tmp;
+ }
+
+ public void clearVisit(){
+ this.visit = false;
+ }
+
+ public void sort() {
+
+ // Zbyt nowe dopiero od API 24
+ //String[] strings = b.groupList.toArray(String[]::new);
+ String[] strings = new String[this.groupList.size()];
+ for (int i = 0; i < this.groupList.size(); i++) {
+ strings[i] = this.groupList.get(i);
+ }
+
+ Integer[] numbers = new Integer[strings.length];
+ for(int i = 0;i < strings.length;i++)
+ {
+ try
+ {
+ numbers[i] = Integer.parseInt(strings[i]);
+ }
+ catch (NumberFormatException nfe)
+ {
+ numbers[i] = null;
+ }
+ }
+
+ Arrays.sort(numbers, Collections.reverseOrder());
+
+ /*
+ int n = numbers.length;
+ int temp = 0;
+ for(int i=0; i < n; i++){
+ for(int j=1; j < (n-i); j++){
+ if(numbers[j-1] > numbers[j]){
+ //swap elements
+ temp = numbers[j-1];
+ numbers[j-1] = numbers[j];
+ numbers[j] = temp;
+ }
+
+ }
+ }
+ */
+
+ this.groupList.clear();
+ for(int i = 0;i < numbers.length;i++)
+ {
+ try
+ {
+ this.groupList.add(Integer.toString(numbers[i]));
+ }
+ catch (NumberFormatException nfe)
+ {
+ //numbers[i] = null;
+ }
+ }
+
+ }
+
+ public void sortReverseIndex() {
+ // Zbyt nowe dopiero od API 24
+ //String[] strings = b.groupList.toArray(String[]::new);
+ Integer[] integers = new Integer[this.listIndex.size()];
+ for (int i = 0; i < this.listIndex.size(); i++) {
+ integers[i] = this.listIndex.get(i);
+ }
+
+ Arrays.sort(integers, Collections.reverseOrder());
+
+ this.listIndex.clear();
+ for(int i = 0;i < integers.length;i++)
+ {
+ try
+ {
+ this.listIndex.add(integers[i]);
+ }
+ catch (NumberFormatException nfe)
+ {
+ //numbers[i] = null;
+ }
+ }
+ }
+} \ No newline at end of file
diff --git a/android/SameGame/app/src/main/java/com/example/samegame/GridRVAdapter.kt b/android/SameGame/app/src/main/java/com/example/samegame/GridRVAdapter.kt
new file mode 100644
index 0000000..fd4c993
--- /dev/null
+++ b/android/SameGame/app/src/main/java/com/example/samegame/GridRVAdapter.kt
@@ -0,0 +1,79 @@
+/*
+Same Game - My first application built in Kotlin
+date: 19-III-2024
+code: Przemyslaw R. Pietraszczyk
+license: GPL v3
+IDE: Android Studio Iguana
+*/
+
+package com.example.samegame
+
+import android.content.Context
+import android.view.LayoutInflater
+import android.view.View
+import android.view.ViewGroup
+import android.widget.BaseAdapter
+import android.widget.ImageView
+import android.widget.TextView
+
+// on below line we are creating an
+// adapter class for our grid view.
+internal class GridRVAdapter(
+ // on below line we are creating two
+ // variables for course list and context
+ private val courseList: List<GridViewModal>,
+ private val context: Context
+) :
+ BaseAdapter() {
+ // in base adapter class we are creating variables
+ // for layout inflater, course image view and course text view.
+ private var layoutInflater: LayoutInflater? = null
+ private lateinit var courseTV: TextView
+ private lateinit var courseIV: ImageView
+
+ // below method is use to return the count of course list
+ override fun getCount(): Int {
+ return courseList.size
+ }
+
+ // below function is use to return the item of grid view.
+ override fun getItem(position: Int): Any? {
+ return null
+ }
+
+ // below function is use to return item id of grid view.
+ override fun getItemId(position: Int): Long {
+ return 0
+ }
+
+ // in below function we are getting individual item of grid view.
+ override fun getView(position: Int, convertView: View?, parent: ViewGroup?): View? {
+ var convertView = convertView
+ // on blow line we are checking if layout inflater
+ // is null, if it is null we are initializing it.
+ if (layoutInflater == null) {
+ layoutInflater =
+ context.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater
+ }
+ // on the below line we are checking if convert view is null.
+ // If it is null we are initializing it.
+ if (convertView == null) {
+ // on below line we are passing the layout file
+ // which we have to inflate for each item of grid view.
+ convertView = layoutInflater!!.inflate(R.layout.row, null)
+ }
+ // on below line we are initializing our course image view
+ // and course text view with their ids.
+ // trzeba zainicjowac
+ //courseIV = convertView!!.findViewById(R.id.idIVCourse)
+ // Nie wyswietla ikony
+ ///courseIV.setImageResource(courseList.get(position).courseImg)
+ // on below line we are setting text in our course text view.
+ courseTV = convertView!!.findViewById(R.id.idTVCourse)
+ courseTV.setText(courseList.get(position).courseName)
+ courseTV.setBackgroundColor(courseList.get(position).courseImg);
+
+ // at last we are returning our convert view.
+ return convertView
+ }
+}
diff --git a/android/SameGame/app/src/main/java/com/example/samegame/MainActivity.kt b/android/SameGame/app/src/main/java/com/example/samegame/MainActivity.kt
new file mode 100644
index 0000000..331357a
--- /dev/null
+++ b/android/SameGame/app/src/main/java/com/example/samegame/MainActivity.kt
@@ -0,0 +1,290 @@
+/*
+Same Game - My first application built in Kotlin
+date: 19-III-2024
+code: Przemyslaw R. Pietraszczyk
+license: GPL v3
+IDE: Android Studio Iguana
+*/
+
+package com.example.samegame
+
+//import android.R
+
+//import android.content.Intent
+
+//import android.R
+
+//import android.R
+import android.os.Bundle
+import android.widget.AdapterView
+import android.widget.GridView
+import android.widget.Toast
+import androidx.activity.ComponentActivity
+import android.view.LayoutInflater
+import java.util.*
+
+
+//import com.example.samegame.R
+
+
+private inline fun <reified T> matrixOfFields(n: Int, m: Int) = Array(n) { arrayOfNulls<T>(m) }
+//private var arrayMap = matrixOfFields<Box>(9, 6) // example arguments
+//private var courseList: List<GridViewModal> = TODO()
+
+data class GridViewModal(
+ // we are creating a modal class with 2 member
+ // one is course name as string and
+ // other course img as int.
+ val courseName: String,
+ val courseImg: Int,
+ val resource: Int,
+ val index: Int
+)
+class MainActivity : ComponentActivity() {
+
+ //override fun onCreate(savedInstanceState: Bundle?) {
+ // super.onCreate(savedInstanceState)
+ // setContentView(layout.activity_main)
+/*
+ val bitmap: Bitmap = Bitmap.createBitmap(700, 1000, Bitmap.Config.ARGB_8888)
+ val canvas: Canvas = Canvas(bitmap)
+ val footingpaint = Paint ()
+ footingpaint.setARGB (255, 128, 54, 67)
+
+ var shapeDrawable: ShapeDrawable
+ // oval positions
+ var left = 50
+ var top = 50
+ var right = 200
+ var bottom = 200
+
+ // draw rectangle shape to canvas
+ shapeDrawable = ShapeDrawable(RectShape())
+ shapeDrawable.setBounds( left, top, right, bottom)
+ shapeDrawable.getPaint().setColor(Color.parseColor("#009944"))
+ shapeDrawable.draw(canvas)
+
+
+ // now bitmap holds the updated pixels
+ // val img = findViewById<View>(R.id.imageV) as ImageView
+
+ // set bitmap as background to ImageView
+ //R.id.imageV.background = BitmapDrawable(getResources(), bitmap)
+
+ //shapeDrawable.setBackground(BitmapDrawable(resources, BIMAP))
+*/
+ //val img = findViewById<View>(R.id.imageV) as ImageView
+
+
+
+
+
+
+ // on below line we are creating
+ // variables for grid view and course list
+ lateinit var courseGRV: GridView
+ lateinit var courseList: List<GridViewModal>
+ //private inline fun <reified T> matrixOfFields(n: Int, m: Int) = Array(n) { arrayOfNulls<T>(m) }
+ //private fun <Box> matrixOfFields(n: Int, m: Int) = Array(n) { arrayOfNulls<Box>(m) }
+
+ private var arrayMap = matrixOfFields<Box>(9, 6) // example arguments
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_main)
+
+ // initializing variables of grid view with their ids.
+ courseGRV = findViewById(R.id.idGRV)
+ courseList = ArrayList<GridViewModal>()
+
+ var listOfColors = listOf("blue","green", "magenta", "navy", "orange", "yellow")
+ var k = 0
+ for (y: Int in 0..8)
+ {
+ for (x: Int in 0..5)
+ {
+ val rnds = (0..2).random()
+ arrayMap[y][x] = Box()
+ arrayMap[y][x]!!.setColorName(listOfColors[rnds]) // 9
+ arrayMap[y][x]!!.setGroupIndex(k++);
+ arrayMap[y][x]!!.setVelocity(y, x);
+ }
+ }
+ for (y: Int in 0..8)
+ {
+ for (x: Int in 0..5)
+ {
+ arrayMap[y][x]!!.like(arrayMap[y][x]!!.getColor(), arrayMap, y, x, y, x);
+ arrayMap[y][x]!!.clearVisit()
+
+ arrayMap[y][x]!!.removeDuplicates()
+ arrayMap[y][x]!!.sort() // also reverse
+
+ arrayMap[y][x]!!.removeDuplicatesIndex()
+ arrayMap[y][x]!!.sortReverseIndex()
+
+
+ arrayMap[y][x]!!.resource = this.resources.getIdentifier(arrayMap[y][x]!!.getColor(), "color", this.packageName)
+ //courseList = courseList + GridViewModal("czwarty", R.mipmap.ic_launcher)
+ //courseList = courseList + GridViewModal(arrayMap[y][x]!!.groupList.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+ //courseList = courseList + GridViewModal(arrayMap[y][x]!!.getColor(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+ //courseList = courseList + GridViewModal(arrayMap[y][x]!!.listIndex.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+ courseList = courseList + GridViewModal(arrayMap[y][x]!!.getGroupIndex().toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+
+ }
+ }
+ // on below line we are initializing our course adapter
+ // and passing course list and context.
+ var courseAdapter = GridRVAdapter(courseList = courseList, this@MainActivity)
+
+ // on below line we are setting adapter to our grid view.
+ courseGRV.adapter = courseAdapter
+
+ // on below line we are adding on item
+ // click listener for our grid view.
+ courseGRV.onItemClickListener = AdapterView.OnItemClickListener { _, _, position, _ ->
+ // nie idzie tego użyć w osobnej fukcji, replikujw arrayMap
+ var text: String
+ val y: Int = position / 6
+ val x: Int = position % 6
+ text = "Shit"
+ val color: String = arrayMap[y][x]!!.getColor()
+
+ if (y >= 1) {
+ val c: String = arrayMap[y-1][x]!!.getColor()
+ if (color == c) text = "bingo !"
+ }
+ if (y < 8) {
+ val c: String = arrayMap[y+1][x]!!.getColor()
+ if (color == c) text = "bingo !"
+ }
+ if (x >= 1) {
+ val c: String = arrayMap[y][x-1]!!.getColor()
+ if (color == c) text = "bingo !"
+ }
+ if (x < 5) {
+ val c: String = arrayMap[y][x+1]!!.getColor()
+ if (color == c) text = "bingo !"
+ }
+ /*
+ Toast.makeText(
+ applicationContext, courseList[position].courseName + " selected",
+ //applicationContext, text,
+ Toast.LENGTH_SHORT
+ ).show()
+ */
+
+ if (text != "Shit") {
+ for (l in arrayMap[y][x]!!.listIndex) {
+ val i: Int = l / 6
+ val j: Int = l % 6
+ arrayMap[i][j]!!.blank()
+ }
+ println("Left lastIndex: "+arrayMap[y][x]!!.listIndex.toString())
+ // Przesunięcie w lerwo
+ for (l in arrayMap[y][x]!!.listIndex) {
+ val i: Int = l / 6
+ val j: Int = l % 6
+ arrayMap[i][j]!!.toLeft(arrayMap, i, j)
+ }
+
+
+ // Usuwanie elementow
+
+ for (y: Int in 0..8) {
+ for (x: Int in 0..5) {
+ arrayMap[y][x]!!.groupList.clear()
+ arrayMap[y][x]!!.listIndex.clear()
+ }
+ }
+
+ courseList = ArrayList<GridViewModal>()
+ for (y: Int in 0..8)
+ {
+ for (x: Int in 0..5)
+ {
+ arrayMap[y][x]!!.like(arrayMap[y][x]!!.getColor(), arrayMap, y, x, y, x);
+ arrayMap[y][x]!!.clearVisit()
+
+ arrayMap[y][x]!!.removeDuplicates()
+ arrayMap[y][x]!!.sort()
+ arrayMap[y][x]!!.removeDuplicatesIndex()
+ arrayMap[y][x]!!.sortReverseIndex()
+
+
+ arrayMap[y][x]!!.resource = this.resources.getIdentifier(arrayMap[y][x]!!.getColor(), "color", this.packageName)
+ //courseList = courseList + GridViewModal("czwarty", R.mipmap.ic_launcher)
+ //courseList = courseList + GridViewModal(arrayMap[y][x]!!.groupList.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+ //courseList = courseList + GridViewModal(arrayMap[y][x]!!.getColor(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+ //courseList = courseList + GridViewModal(arrayMap[y][x]!!.listIndex.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+ courseList = courseList + GridViewModal(arrayMap[y][x]!!.getGroupIndex().toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+
+ }
+
+ }
+
+
+
+ //courseAdapter = GridRVAdapter(courseList = courseList, this@MainActivity)
+ //courseGRV.invalidateViews();
+ //courseGRV.setAdapter(courseAdapter);
+ //courseAdapter.notifyDataSetChanged()
+
+
+
+
+
+ for (i: Int in 0..8)
+ for (j: Int in 0..5)
+ arrayMap[i][j]!!.toUp(arrayMap, i, j)
+
+ // czyszczenie
+
+ for (y: Int in 0..8) {
+ for (x: Int in 0..5) {
+ arrayMap[y][x]!!.groupList.clear()
+ arrayMap[y][x]!!.listIndex.clear()
+ }
+ }
+
+ courseList = ArrayList<GridViewModal>()
+ for (y: Int in 0..8)
+ {
+ for (x: Int in 0..5)
+ {
+ arrayMap[y][x]!!.like(arrayMap[y][x]!!.getColor(), arrayMap, y, x, y, x);
+ arrayMap[y][x]!!.clearVisit()
+
+ arrayMap[y][x]!!.removeDuplicates()
+ arrayMap[y][x]!!.sort()
+ arrayMap[y][x]!!.removeDuplicatesIndex()
+ arrayMap[y][x]!!.sortReverseIndex()
+
+
+ arrayMap[y][x]!!.resource = this.resources.getIdentifier(arrayMap[y][x]!!.getColor(), "color", this.packageName)
+ //courseList = courseList + GridViewModal("czwarty", R.mipmap.ic_launcher)
+ //courseList = courseList + GridViewModal(arrayMap[y][x]!!.groupList.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+ //courseList = courseList + GridViewModal(arrayMap[y][x]!!.getColor(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+ //courseList = courseList + GridViewModal(arrayMap[y][x]!!.listIndex.toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+ courseList = courseList + GridViewModal(arrayMap[y][x]!!.getGroupIndex().toString(), getResources().getColor( arrayMap[y][x]!!.resource), arrayMap[y][x]!!.resource, arrayMap[y][x]!!.getGroupIndex() )
+
+ }
+
+ }
+
+ courseAdapter = GridRVAdapter(courseList = courseList, this@MainActivity)
+ courseGRV.invalidateViews();
+ courseGRV.setAdapter(courseAdapter);
+ courseAdapter.notifyDataSetChanged()
+
+
+
+ // on below line we are setting adapter to our grid view.
+ // courseGRV.adapter = courseAdapter
+
+ }
+
+ }
+
+ }
+}
diff --git a/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Color.kt b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Color.kt
new file mode 100644
index 0000000..2510091
--- /dev/null
+++ b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Color.kt
@@ -0,0 +1,11 @@
+package com.example.samegame.ui.theme
+
+import androidx.compose.ui.graphics.Color
+
+val Purple80 = Color(0xFFD0BCFF)
+val PurpleGrey80 = Color(0xFFCCC2DC)
+val Pink80 = Color(0xFFEFB8C8)
+
+val Purple40 = Color(0xFF6650a4)
+val PurpleGrey40 = Color(0xFF625b71)
+val Pink40 = Color(0xFF7D5260) \ No newline at end of file
diff --git a/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Theme.kt b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Theme.kt
new file mode 100644
index 0000000..6a5d879
--- /dev/null
+++ b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Theme.kt
@@ -0,0 +1,70 @@
+package com.example.samegame.ui.theme
+
+import android.app.Activity
+import android.os.Build
+import androidx.compose.foundation.isSystemInDarkTheme
+import androidx.compose.material3.MaterialTheme
+import androidx.compose.material3.darkColorScheme
+import androidx.compose.material3.dynamicDarkColorScheme
+import androidx.compose.material3.dynamicLightColorScheme
+import androidx.compose.material3.lightColorScheme
+import androidx.compose.runtime.Composable
+import androidx.compose.runtime.SideEffect
+import androidx.compose.ui.graphics.toArgb
+import androidx.compose.ui.platform.LocalContext
+import androidx.compose.ui.platform.LocalView
+import androidx.core.view.WindowCompat
+
+private val DarkColorScheme = darkColorScheme(
+ primary = Purple80,
+ secondary = PurpleGrey80,
+ tertiary = Pink80
+)
+
+private val LightColorScheme = lightColorScheme(
+ primary = Purple40,
+ secondary = PurpleGrey40,
+ tertiary = Pink40
+
+ /* Other default colors to override
+ background = Color(0xFFFFFBFE),
+ surface = Color(0xFFFFFBFE),
+ onPrimary = Color.White,
+ onSecondary = Color.White,
+ onTertiary = Color.White,
+ onBackground = Color(0xFF1C1B1F),
+ onSurface = Color(0xFF1C1B1F),
+ */
+)
+
+@Composable
+fun SameGameTheme(
+ darkTheme: Boolean = isSystemInDarkTheme(),
+ // Dynamic color is available on Android 12+
+ dynamicColor: Boolean = true,
+ content: @Composable () -> Unit
+) {
+ val colorScheme = when {
+ dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> {
+ val context = LocalContext.current
+ if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context)
+ }
+
+ darkTheme -> DarkColorScheme
+ else -> LightColorScheme
+ }
+ val view = LocalView.current
+ if (!view.isInEditMode) {
+ SideEffect {
+ val window = (view.context as Activity).window
+ window.statusBarColor = colorScheme.primary.toArgb()
+ WindowCompat.getInsetsController(window, view).isAppearanceLightStatusBars = darkTheme
+ }
+ }
+
+ MaterialTheme(
+ colorScheme = colorScheme,
+ typography = Typography,
+ content = content
+ )
+} \ No newline at end of file
diff --git a/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Type.kt b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Type.kt
new file mode 100644
index 0000000..eefeeae
--- /dev/null
+++ b/android/SameGame/app/src/main/java/com/example/samegame/ui/theme/Type.kt
@@ -0,0 +1,34 @@
+package com.example.samegame.ui.theme
+
+import androidx.compose.material3.Typography
+import androidx.compose.ui.text.TextStyle
+import androidx.compose.ui.text.font.FontFamily
+import androidx.compose.ui.text.font.FontWeight
+import androidx.compose.ui.unit.sp
+
+// Set of Material typography styles to start with
+val Typography = Typography(
+ bodyLarge = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Normal,
+ fontSize = 16.sp,
+ lineHeight = 24.sp,
+ letterSpacing = 0.5.sp
+ )
+ /* Other default text styles to override
+ titleLarge = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Normal,
+ fontSize = 22.sp,
+ lineHeight = 28.sp,
+ letterSpacing = 0.sp
+ ),
+ labelSmall = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Medium,
+ fontSize = 11.sp,
+ lineHeight = 16.sp,
+ letterSpacing = 0.5.sp
+ )
+ */
+) \ No newline at end of file