Gavin Garzia

Computer Science Student

Trace Route

November 2024

This project was written in C++ using raw sockets to send network layer ICMP echo requests. The program sends packets with increasing TTLs until it receives a response from the device at the IP address provided to it or it has sent 30 packets total. The program also listens for replies to its packets and reads their headers to see what type of packet they are. If the reply is an Echo Reply then the program has reached its destination. If the reply is a TTL Exceeded packet then the program knows that that device is a step along the route to the destination. If the program does not receive a reply after a few seconds then it will timeout and send the next packet.

Matrix Terminal Screensaver

September 2024

This project was written in C using the ncurses library for the terminal display. It features random strings of ASCII characters that fall down the screen and when the -r flag is specified the lines of text will have different colors. The specific colors depend on the terminal used as the code uses the color scheme specified by the terminal's theme.

Source Code

Clue

May 2024

This project was created as a group project with Brady Ancell for Software Engineering (CSCI306). The game logic was built in Java and the GUI was created using the Java Swing framework. The game features all of the major rules of clue. One of the more interesting to implement was moving a player when another player made a suggestion including them, and then updating their valid moves accordingly. For example if you end a turn in a room you are not allowed to guess there again unless you were moved there by another player. While implementing Clue we utilized Object Oriented Programming concepts such as polymorphism and a singleton pattern. In order to ensure quality of code, we implemented tests for all features using the JUnit framework.

Mines wants this source code to be private from future CSCI306 students so code is availible upon request.

Chess

December 2022

My Chess project was built as a final project for Foundational Programming Concepts and Design (CSCI200). The user interface built in the terminal and displays each sides captured pieces, the board, a move list, whose turn it is, and a prompt to enter the next move. Moves are entered by entering the square of the piece you are moving and then the square it is moving to (Algebraic notation was not added due to time constraints). Move validation is implemented and includes rules such as promotion, castling, 2 square first pawn moves, and check/checkmate detection. If an invalid move is entered it will tell the user that their move was invalid and prompt them to enter a new move.

Source Code