Java Project Tutorial - How To Create Squid Game Glass Bridge In Java NetBeans [ With Source Code ]

Sdílet
Vložit
  • čas přidán 23. 11. 2021
  • How To Create Glass Bridge Game From Squid Game In Java NetBeans With Source Code
    ▶ Get The Source Code: 1bestcsharp.blogspot.com/2021...
    ▶ Get All Java Projects Source Code: bit.ly/JavaProjectsBundle
    ----------------- Check out my Java Projects! -------------------
    ▶ Inventory Management System - bit.ly/Java_Inventory
    ▶ Students Information System - bit.ly/JavaStudent_System
    ▶ Contacts Management System - bit.ly/Java_Contacts
    ▶ Hotel Management System - bit.ly/Java_Hotel
    ▶ Real Estate Management System - bit.ly/Java_RealEstate
    ▶ Library Management System - bit.ly/Java_Library
    ▶ Car Rental Management System - bit.ly/3SaTl43
    ▶ Java Project For Beginners - • Java Project For Begin...
    ▶ All My Programming Projects Here - bit.ly/2HrU8hK
    ▶ My Source Code Store Here - bit.ly/2OsC0TU
    ----------------------------------- Project Description -----------------------------------
    in this java tutorial we will see how to make the glass stepping stones game (Glass Bridge Game) from the serie squid game using java netbeans.
    Glass Bridge Game Rules:
    players had to hop across a suspended bridge lined with panels of either regular or tempered glass. If they chose correctly, they would land on tempered glass and be safe.
    Game Names:
    Glass Bridge
    Glass Stepping Stones
    What We Will Use To Build This Project ? :
    - Java Programming Language.
    - NetBeans Editor.
    - pixabay.com
    Java Swing Components We Will Use In This Project:
    - JFrame
    - JPanel
    - JLabel.
    - JButton.
    ------------------------- JAVA Tutorials ----------------------------
    ▶ Java Login and Register Form - bit.ly/Java_Login
    ▶ Java Calculator In Netbeans - bit.ly/Java_Calculator
    ▶ Java Tic Tac Toe Game - bit.ly/Java_TicTacToe
    ▶ Java JTree Tutorial - bit.ly/Java_JTree_Tutorial
    ▶ Java and MySQL Tutorials Using Netbeans - bit.ly/Java_Mysql
    ▶ Java Gui Tutorial For Beginners - bit.ly/Java_Gui
    ▶ Java JTable Tutorial - bit.ly/JAVA_JTable_Tutorial
    ▶ Create a Project In Java With MySQL - bit.ly/Java_Mysql_Project
    ------------------------- JAVA COURSE ----------------------------
    ▶ master Java core development step-by-step - bit.ly/2HXSuAn
    -------------------- Related Java Tutorials --------------------
    ▶ Java Project Tutorial - Make Login and Register Form Step by Step Using NetBeans And MySQL Database - • Java Project Tutorial ...
    ▶ JAVA - How To Design Login And Register Form In Java Netbeans - • JAVA - How To Design L...
    ▶ JAVA - How To Create Login And Register Form With MySQL DataBase In Java Netbeans - • JAVA - How To Create L...
    ▶ JAVA - How To Design Menu Using JPanel and JLabel In Java Netbeans - • JAVA - How To Design M...
    ▶ JAVA - How To Design Dashboard Form In Java Netbeans - • JAVA - How To Design D...
    ---------------------------------------------------------------------------------
    visit our blog 1bestcsharp.blogspot.com/
    CONNECT WITH ME ONLINE / 1bestcsharpblog
    subscribe: goo.gl/nRjPKk
    programming projects with source code:
    1bestcsharp.blogspot.com/p/pro...
    C# And Java Programming Books
    1bestcsharp.blogspot.com/2015/...
    share this video: • Java Project Tutorial ...
    #java #login #dashboard #project #design

Komentáře • 24

  • @ThaRoboForm
    @ThaRoboForm Před 2 lety

    Good instructions. It's easy to follow. Awesome

  • @Domo22xD
    @Domo22xD Před 2 lety +6

    Here is console version:
    import java.util.Random;
    import java.util.Scanner;
    public class JumpGame {
    private static final Random random = new Random();
    private static final Scanner sc = new Scanner(System.in);
    public static void main(String[] args) {
    String input;
    int life = 10;
    int goal = 10;
    int glass;
    while(goal > 0 || life > 0){
    // input = player();
    input = ai();
    glass = rand();
    if(input.equals("left") && glass == 0){
    goal--;
    display(life,goal);
    } else if(input.equals("right") && glass == 1){
    goal--;
    display(life,goal);
    } else {
    life--;
    display(life,goal);
    }
    }
    }
    private static void display(int life, int goal){
    if(life == 0 || goal == 0){
    System.out.println("Game end!");
    System.out.println("People left: " + life);
    System.out.println("Moves left: " + goal);
    System.exit(0);
    } else {
    System.out.println("People left: " + life);
    System.out.println("Moves left: " + goal);
    }
    }
    private static int rand(){
    return random.nextInt(2);
    }
    // Player
    private static String player(){
    return sc.next();
    }
    // AI bot
    private static String ai(){
    String direction;
    int AIMove = rand();
    if(AIMove == 0){
    direction = "left";
    } else {
    direction = "right";
    }
    return direction;
    }
    }

  • @the7avadabetheme440
    @the7avadabetheme440 Před 2 lety

    i love your channel,Great video! Thank you

  • @hubcreek6957
    @hubcreek6957 Před 2 lety

    Super good... Subscribed. Thanks

  • @milaazul712
    @milaazul712 Před 2 lety

    I liked it so much.... thank you

  • @delaaprilianti3089
    @delaaprilianti3089 Před 2 lety +1

    hello i have followed it correctly, but my jbutton play again is not working please help

  • @folaadtv9943
    @folaadtv9943 Před 2 lety

    omg😇 awesome work

  • @norauretemplates2570
    @norauretemplates2570 Před 2 lety

    Jesus!!!!! Love it

  • @impekatemplates2849
    @impekatemplates2849 Před 2 lety

    Wow i love it

  • @jhonreybalbastro4535
    @jhonreybalbastro4535 Před rokem

    Hi Sir. Good day! I'm a Computer Science student and I have one project to submit to my professor. The project is to make or create a simple game. So, I already found your game and I really like it but my problem is I can't get the source code of it. Can I request to get the source code of your nice game? Thank you so much sir. I'm looking forward to hear from you.

  • @amnaarshad1892
    @amnaarshad1892 Před 2 lety

    It was a great video but my play again button is not working i’ll be very great full if you can help me.

  • @amnaarshad1892
    @amnaarshad1892 Před 2 lety

    where do i find the images which is used in this game?

  • @e-series5961
    @e-series5961 Před 2 lety +1

    13

  • @mohamedzoghpy7682
    @mohamedzoghpy7682 Před 2 lety

    brllant

  • @jhonreybalbastro4535
    @jhonreybalbastro4535 Před rokem

    Hi sir, I already done following your video but it seems the jLabels (Tiles doesn't have footprint when I clicked it.)
    I already send you a message in your Instagram account and I already followed you there. Also, I already subscribed to your CZcams channel. Please help me sir. Thank you so much.

  • @jhonreybalbastro4535
    @jhonreybalbastro4535 Před rokem

    Hi Sir. Good day! I'm a Computer Science student and I have one project to submit to my professor. The project is to make or create a simple game. So, I already found your game and I really like it but my problem is I can't get the source code of it. Can I request to get the source code of your nice game? Thank you so much sir. I'm looking forward to hear from you.

    • @1BestCsharpblog
      @1BestCsharpblog  Před rokem +1

      source code link in the video description

    • @jhonreybalbastro4535
      @jhonreybalbastro4535 Před rokem

      ​@@1BestCsharpblog Can you help me sir because I already created and design it using JFRAME not NetBeans. We are using JFrame to design and Jcreator to edit the code of it. Honestly, I'm not smart in coding sir because I'm new and I'm still learning. I hope you can able to help me this time sir. Thank you very much. :)

    • @jhonreybalbastro4535
      @jhonreybalbastro4535 Před rokem

      Can you help me sir because I already created and design it using JFRAME not NetBeans. We are using JFrame to design and Jcreator to edit the code of it. Honestly, I'm not smart in coding sir because I'm new and I'm still learning. I hope you can able to help me this time sir. Thank you very much. :)

    • @jhonreybalbastro4535
      @jhonreybalbastro4535 Před rokem

      Sir can you please help on my project. I’ll just need to pass my subject.😢

  • @jhonreybalbastro4535
    @jhonreybalbastro4535 Před rokem

    Hi sir, I already done following your video but it seems the jLabels (Tiles doesn't have footprint when I clicked it.)
    I already send you a message in your Instagram account and I already followed you there. Also, I already subscribed to your CZcams channel. Please help me sir. Thank you so much.