crying234324

Untitled

Mar 14th, 2025
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 8.80 KB | Source Code | 0 0
  1. // written by kl980
  2.  
  3. // libraries used
  4. #include "DFRobot_RGBLCD1602.h"
  5. #include <Wire.h>
  6. #include <Adafruit_GFX.h>
  7. #include <Adafruit_SSD1306.h>
  8.  
  9. ///// PIN ASSIGNMENT ////////
  10. const int redLED1 = 2;
  11. const int blueLED1 = 3;
  12. const int redLED2 = 4;
  13. const int blueLED2 = 5;
  14. const int redPot = A0;
  15. const int bluePot = A1;
  16. const int buzzer = 6;
  17. const int button = 13;
  18. const int joystick = A7;
  19. const int segmentPins[7] = {7,8,9,10,11,12,A2};  
  20. const int scl = A5;
  21. const int sda = A4;
  22.  
  23. /////// OLED SCREEN ///////////
  24. const int oledHeight = 96;
  25. const int oledWidth = 16;
  26. Adafruit_SSD1306 oled(oledHeight, oledWidth, &Wire, -1);
  27.  
  28.  
  29. ////// LCD SCREEN //////////
  30. DFRobot_RGBLCD1602 lcd(0x2D, 16, 2); // address, columns, rows
  31.  
  32.  
  33. ////// GAME DESIGN ////////
  34. //custom pixel characters
  35. uint8_t asteroidSymbol[8] = {
  36.   B00000, // .....
  37.   B00100, // ..*..
  38.   B01110, // .***.
  39.   B11111, // *****
  40.   B11111, // *****
  41.   B01110, // .***.
  42.   B00100, // ..*..
  43.   B00000  // .....
  44. };
  45.  
  46. uint8_t shipSymbol[8] = {
  47.   B00011, // ...**
  48.   B00110, // ..**.
  49.   B01100, // .**..
  50.   B11111, // *****
  51.   B11111, // *****
  52.   B01100, // .**..
  53.   B00110, // ..**.
  54.   B00011  // ...**
  55. };
  56.  
  57. // handles the movement of asteroid
  58. int asteroidActive[5] = {0,0,0,0,0};
  59. int asteroidRows[5] = {0,0,0,0,0};
  60. int asteroidCols[5] = {0,0,0,0,0};
  61. int asteroidRow;
  62. unsigned long timeMove = 0;
  63. int moveDelay = 200;
  64. int joystickVal;
  65.  
  66. // LED colour game variables
  67. bool newColour = 1;
  68. bool match = 0;
  69. int redRGB1;
  70. int blueRGB1;
  71. int redRGB2;
  72. int blueRGB2;
  73. long unsigned timeMatch = 0;
  74. int matchDelay = 100;
  75.  
  76. // asteroid game variables
  77. int lives = 3;
  78. const int startLives = 3;
  79. int shipRow = 0;
  80. bool shoot = 0;
  81. int spawnDelay = 500;
  82. long unsigned timeSpawn = 0;
  83. int newSpawn = 0;
  84. int spawn;
  85. int spawnLocation = 0;
  86. const int shipCol = 13;
  87. bool dead = 0;
  88. int timer = 0;
  89. int wins = 0;
  90. bool complete = 0;
  91. bool start = 0;
  92.  
  93. // time variables
  94. long unsigned timeNow = 0;
  95.  
  96. // states of 7 segment display - 10 values correspond to displaying the numbers 0 - 9
  97. int states0[10] = {0,1,0,0,1,0,0,0,0,0};
  98. int states1[10] = {0,0,0,0,0,1,1,0,0,0};
  99. int states2[10] = {0,0,1,0,0,0,0,0,0,0};
  100. int states3[10] = {0,1,0,0,1,0,0,1,0,1};
  101. int states4[10] = {0,1,0,1,1,1,0,1,0,1};
  102. int states5[10] = {0,1,1,1,0,0,0,1,0,0};
  103. int states6[10] = {1,1,0,0,0,0,0,1,0,0};
  104.  
  105.  
  106. void setup() {
  107.   // initiate lcd
  108.   Wire.begin();
  109.   lcd.init();
  110.   lcd.customSymbol(0, asteroidSymbol);
  111.   lcd.customSymbol(1, shipSymbol);
  112.  
  113.   // initiate oled
  114.   oled.begin(SSD1306_SWITCHCAPVCC, 0x3c);
  115.   oled.clearDisplay();
  116.   oled.setTextSize(1);
  117.   oled.setTextColor(SSD1306_WHITE);
  118.   oled.println("Avoid Asteroids");
  119.   oled.print("Restore core");
  120.   oled.display();
  121.  
  122.   // set up pin modes
  123.   pinMode(redLED1, OUTPUT);
  124.   pinMode(blueLED1, OUTPUT);
  125.   pinMode(redLED2, OUTPUT);
  126.   pinMode(blueLED2, OUTPUT);
  127.   pinMode(redPot, INPUT);
  128.   pinMode(bluePot, INPUT);
  129.   pinMode(buzzer, OUTPUT);
  130.   pinMode(button, INPUT);
  131.   for (int i = 0; i<=6; i++){
  132.     pinMode(segmentPins[i], OUTPUT);
  133.   }
  134.  
  135.   digitalWrite(buzzer, 0);
  136.  
  137.   //spawn an asteroid
  138.   asteroidRow = random(0,2);
  139.   asteroidActive[spawnLocation] = 1; // lcd will print asteroid position
  140.   asteroidRows[spawnLocation] = asteroidRow; //set row value  - this will stay constant for that asteroid
  141.   asteroidCols[spawnLocation] = 0; // set column location at beginning
  142.   timeSpawn = millis();
  143.  
  144.   // set the starting screen for the lcd
  145.   lcd.setCursor(0,0);
  146.   lcd.write("Press the button");
  147.   lcd.setCursor(0,1);
  148.   lcd.write("to start");
  149.  
  150.  
  151. }
  152.  
  153. void loop() {
  154.   // if the game has been started but not completed
  155.   if (complete == 0 && start == 1){
  156.     lcd.setRGB(100, 100, 100);
  157.  
  158.     // set the RGB LED to a new colour
  159.     if (newColour) {
  160.       redRGB1 = random(0,5)*51;
  161.       blueRGB1 = random(0,5)*51;
  162.       analogWrite(redLED1, redRGB1);
  163.       analogWrite(blueLED1, blueRGB1);  
  164.       newColour = 0;
  165.     }
  166.      
  167.     // main loop
  168.     timeNow = millis();
  169.  
  170.       // read potentiometer and set LEDs
  171.       redRGB2 = analogRead(redPot)*5/4095*51;
  172.       blueRGB2 = analogRead(bluePot)*5/4095*51;
  173.  
  174.       analogWrite(redLED2, redRGB2);
  175.       analogWrite(blueLED2, blueRGB2);
  176.  
  177.       // check if leds match and add lives and sound buzzer
  178.       if (redRGB1 == redRGB2 && blueRGB1 == blueRGB2 && match == 0){
  179.         tone(buzzer, 500);
  180.         match = 1;
  181.         lives = lives + 1;
  182.         if (lives == 10){
  183.           lives = 9; // max of 9 lives
  184.         }
  185.         timeMatch = millis();
  186.       }
  187.    
  188.      
  189.       // read joystick and set poisition
  190.       joystickVal = analogRead(joystick);
  191.       if (joystickVal < 1800){ // right
  192.         shipRow = 1;
  193.       }
  194.       if (joystickVal > 2000) { //left
  195.         shipRow = 0;
  196.       }
  197.  
  198.  
  199.       // read button
  200.       shoot = digitalRead(button);
  201.       if (shoot) {
  202.         for ( int i = 0; i <= 2; i++){
  203.           if (shipRow == asteroidRows[i] && shipCol + 1 == asteroidCols[i]){
  204.             // hit
  205.             asteroidActive[i] = 0;
  206.             lcd.setRGB(0, 255, 0);
  207.             asteroidRows[i] = 0;
  208.             asteroidCols[i] = 0;
  209.           }
  210.         }
  211.       }
  212.  
  213.       // set 7 segment display to lives
  214.       // would be better as a 3d array in future then can run as a loop
  215.       digitalWrite(segmentPins[0], states0[lives]);
  216.       digitalWrite(segmentPins[1], states1[lives]);
  217.       digitalWrite(segmentPins[2], states2[lives]);
  218.       digitalWrite(segmentPins[3], states3[lives]);
  219.       digitalWrite(segmentPins[4], states4[lives]);
  220.       digitalWrite(segmentPins[5], states5[lives]);
  221.       digitalWrite(segmentPins[6], states6[lives]);
  222.  
  223.     // define asteroid movement
  224.     // set arrays to store locations of each asteroid
  225.     // no more than 5 at a time
  226.  
  227.     if (timeNow - timeMove > moveDelay){
  228.       int asteroidRow = 0;
  229.       // columns, rows(2)
  230.       lcd.clear();
  231.  
  232.       // print the ship
  233.       lcd.setCursor(shipCol, shipRow);
  234.       lcd.write((unsigned char)1);
  235.  
  236.       for (int i = 0; i <= 4; i++){ // this needs to be a variable for max number of asteroids in future
  237.         if (asteroidActive[i] == 1){ // if there is an active asteroid
  238.           lcd.setCursor(asteroidCols[i],asteroidRows[i]);
  239.           lcd.write((unsigned char)0);
  240.           // increase column by 1 so next time it will move
  241.           asteroidCols[i] = asteroidCols[i] + 1;
  242.           if (asteroidCols[i] == 17 ){
  243.             lives = lives - 1;
  244.             // kill the asteroid, assign i to newSpawn
  245.             asteroidActive[i] = 0;
  246.             lcd.setRGB(255, 0, 0);
  247.             if (lives == 0){
  248.               dead = 1;
  249.             }
  250.           }
  251.         }
  252.       }
  253.       timeMove = millis();
  254.       timer += 1;
  255.       Serial.println(timer);
  256.     }
  257.  
  258.     // turn buzzer off and set new colour certain amount of time after match
  259.     if ((timeNow - timeMatch > matchDelay) && match == 1){
  260.       noTone(buzzer);
  261.       newColour = 1;
  262.       match = 0;
  263.     }
  264.        
  265.     // check to spawn new asteroid
  266.     // again clunky needs variable to handle
  267.     if ((timeNow - timeSpawn > spawnDelay) && (asteroidActive[0] == 0 | asteroidActive[1] == 0 | asteroidActive[2] == 0) | asteroidActive[3] == 0 | asteroidActive[4] == 0){
  268.       spawn = random(0,2);
  269.       if (spawn) {
  270.         if (asteroidActive[0] == 0) {
  271.         spawnLocation = 0;
  272.         }
  273.         else if (asteroidActive[1] == 0) {
  274.           spawnLocation = 1;
  275.         }
  276.         else if (asteroidActive[2] == 0) {
  277.           spawnLocation = 2;
  278.         }
  279.         else if (asteroidActive[3] == 0) {
  280.           spawnLocation = 3;
  281.         }
  282.         else if (asteroidActive[4] == 0) {
  283.           spawnLocation = 4;
  284.         }
  285.        
  286.         asteroidRow = random(0,2);
  287.         asteroidActive[spawnLocation] = 1;
  288.         asteroidRows[spawnLocation] = asteroidRow; //set row value for final
  289.         asteroidCols[spawnLocation] = 0;
  290.        
  291.       }
  292.       timeSpawn = millis();
  293.  
  294.     }
  295.  
  296.     // lives = 0; reset
  297.     if (dead) {
  298.       lives = startLives;
  299.       lcd.setRGB(255, 0, 0);
  300.       tone(buzzer, 100);
  301.       delay(1000);
  302.       noTone(buzzer);
  303.       timer = 0;
  304.       dead = 0;
  305.     }
  306.  
  307.     // won a round
  308.     if (timer > 200){
  309.       lcd.setRGB(245, 224, 86);
  310.       lives = startLives;
  311.       moveDelay = moveDelay - 15;
  312.       timer = 0;
  313.       tone(buzzer, 261);
  314.       delay(200);
  315.       tone(buzzer, 293);
  316.       delay(200);
  317.       tone(buzzer, 329);
  318.       delay(200);
  319.       noTone(buzzer);
  320.       delay(200);
  321.       wins = wins + 1;
  322.  
  323.     }
  324.  
  325.   // won 3 times
  326.     if (wins > 2){
  327.       complete = 1;
  328.     }
  329.   }
  330.  
  331.   // game complete
  332.   else if (complete) {
  333.     lcd.setRGB(245,224,86);
  334.     lcd.setCursor(0,0);
  335.     lcd.write("Home Coordinates");
  336.     lcd.setCursor(0,1);
  337.     lcd.write("20,25,09");
  338.     delay(10000);
  339.     start = 0;
  340.   }
  341.  
  342.   // start if button pressed
  343.   else if (digitalRead(button)==1){
  344.     start = 1;
  345.   }
  346. }
  347.  
  348.  
Add Comment
Please, Sign In to add comment