Matching Items (40)
Description

This paper explores the inner workings of algorithms that computers may use to play Chess. First, we discuss the classical Alpha-Beta algorithm and several improvements, including Quiescence Search, Transposition Tables, and more. Next, we examine the state-of-the-art Monte Carlo Tree Search algorithm and relevant optimizations. After that, we consider a

This paper explores the inner workings of algorithms that computers may use to play Chess. First, we discuss the classical Alpha-Beta algorithm and several improvements, including Quiescence Search, Transposition Tables, and more. Next, we examine the state-of-the-art Monte Carlo Tree Search algorithm and relevant optimizations. After that, we consider a recent algorithm that transforms Alpha-Beta into a “Rollout” search, blending it with Monte Carlo Tree Search under the rollout paradigm. We then discuss our C++ Chess Engine, Homura, and explain its implementation of a hybrid algorithm combining Alpha-Beta with MCTS. Finally, we show that Homura can play master-level Chess at a strength currently exceeding that of our backtracking Alpha-Beta.

ContributorsMoore, Evan (Author) / Kobayashi, Yoshihiro (Thesis director) / Kambhampati, Subbarao (Committee member) / Barrett, The Honors College (Contributor) / Computer Science and Engineering Program (Contributor)
Created2023-05
164947-Thumbnail Image.png
Description
For my thesis, I developed an educational video game titled Cannon Quest. Based around a thought experiment proposed in 1687 by Sir Isaac Newton, Cannon Quest allows players to explore a miniature, 2-dimensional solar system using real physics and gravity. My principle goal was to create an interactive model of

For my thesis, I developed an educational video game titled Cannon Quest. Based around a thought experiment proposed in 1687 by Sir Isaac Newton, Cannon Quest allows players to explore a miniature, 2-dimensional solar system using real physics and gravity. My principle goal was to create an interactive model of orbital motion, with some game/simulation elements. This allows players who are totally unfamiliar with orbital mechanics to gain at least a rudimentary understanding simply by playing the game. While the educational model was my primary goal, care was taken to ensure that Cannon Quest functions as a playable simulator. I developed my own user interface (UI), control setup, and art, as well as integrating music and animation for a more complete user experience. I also spent a significant amount of time balancing the gameplay aspects with the real physics, occasionally sacrificing reality where needed to ensure a better experience. The resulting product is simple and straightforward, while retaining much of the nuances of actual orbital motion. I also developed a website to host Cannon Quest, and better direct my playtesters from a single hub. You can visit this website at www.cannonquest.carrd.co. Alternatively, you can visit https://possiblymatthew.itch.io/cannon-quest or https://github.com/matthewbenjamin22/Cannon-Quest to play the game.
ContributorsBenjamin, Matthew (Author) / Kobayashi, Yoshihiro (Thesis director) / Feng, Xuerong (Committee member) / Barrett, The Honors College (Contributor) / Computer Science and Engineering Program (Contributor) / Historical, Philosophical & Religious Studies, Sch (Contributor)
Created2022-05
164974-Thumbnail Image.png
Description
The goal of this project was to determine if the chosen research and testing method would result in a game where students would practice math in the best way. This was done by creating a video game using Unity that followed key principles for designing a math game and for

The goal of this project was to determine if the chosen research and testing method would result in a game where students would practice math in the best way. This was done by creating a video game using Unity that followed key principles for designing a math game and for how students should practice math in general. Testing was done on participants to determine the strategies they used in order to play the game and these strategies were then defined and categorized based on their effectiveness and how well they met the learning principles. Also, the participants were asked a before and after question to determine if the game improved their overall attitude towards math to make sure the game was helping them learn and was not a hindrance. There was an overall increase in the participants’ feelings towards math after playing the game as well as beneficial strategies, so the research and testing method was overall a success.
ContributorsVaillancourt, Tyler (Author) / Kobayashi, Yoshihiro (Thesis director) / Amresh, Ashish (Committee member) / Barrett, The Honors College (Contributor) / Computing and Informatics Program (Contributor) / Computer Science and Engineering Program (Contributor)
Created2022-05
Description
Vulkan is a modern, low-level, and low-overhead graphics library that allows for the distribution of work across CPU cores using multithreading. This multithreading is possible due to the near full control of the GPU that Vulkan allows. The additional control makes it possible to send multiple instructions to the GPU

Vulkan is a modern, low-level, and low-overhead graphics library that allows for the distribution of work across CPU cores using multithreading. This multithreading is possible due to the near full control of the GPU that Vulkan allows. The additional control makes it possible to send multiple instructions to the GPU at the same time. There are a variety of techniques that can be used with Vulkan to effectively improve performance while multithreading instructions to the GPU. One of the challenges of multithreading is the lack of modern-day GPU hardware to support it, which leads to the purpose of this paper, to explore the practicality of multithreading techniques with Vulkan in today’s current computing environment.
ContributorsWahl, Ryan (Author) / Hansford, Dianne (Thesis director) / Kobayashi, Yoshihiro (Committee member) / Barrett, The Honors College (Contributor) / Computer Science and Engineering Program (Contributor)
Created2023-12
Description

Nowadays, kids are exposed to technology at an incredibly early age. According to a study by YouGov in the United Kingdom, 88% of 12-year-olds are entrusted with their own devices and 85% of children at age 6 have access to a tablet at home (YouGov). In the US, according to

Nowadays, kids are exposed to technology at an incredibly early age. According to a study by YouGov in the United Kingdom, 88% of 12-year-olds are entrusted with their own devices and 85% of children at age 6 have access to a tablet at home (YouGov). In the US, according to MarketingProfs 75% of children 8 and under have access to some type of smart device. In an ever-growing technological world, it is important to make sure that kids are enjoying entertainment that enhances their growth and protects them from inappropriate content (Nanji). I wanted to create a browser game that explains the importance of Security in a colorful, fun environment with a friendly playable character. The game I created is a 2D platformer in which the player learns about the importance of passwords and keeping them secure.

ContributorsMichalik, Jacob (Author) / Meuth, Ryan (Thesis director) / Kobayashi, Yoshihiro (Committee member) / Barrett, The Honors College (Contributor) / Computer Science and Engineering Program (Contributor)
Created2023-05
Description
Tessellation and Screen-Space Ambient Occlusion are algorithms which have been widely-used in real-time rendering in the past decade. They aim to enhance the details of the mesh, cast better shadow effects and improve the quality of the rendered images in real time. WebGL is a web-based graphics library derived from

Tessellation and Screen-Space Ambient Occlusion are algorithms which have been widely-used in real-time rendering in the past decade. They aim to enhance the details of the mesh, cast better shadow effects and improve the quality of the rendered images in real time. WebGL is a web-based graphics library derived from OpenGL ES used for rendering in web applications. It is relatively new and has been rapidly evolving, this has resulted in it supporting a subset of rendering features normally supported by desktop applications. In this thesis, the research is focusing on evaluating Curved PN-Triangles tessellation with Screen Space Ambient Occlusion (SSAO), Horizon-Based Ambient Occlusion (HBAO) and Horizon-Based Ambient Occlusion Plus (HBAO+) in WebGL-based real-time application and comparing its performance to desktop based application and to discuss the capabilities, limitations and bottlenecks of WebGL 1.0.
ContributorsLi, Chenyang (Author) / Amresh, Ashish (Thesis advisor) / Wang, Yalin (Thesis advisor) / Kobayashi, Yoshihiro (Committee member) / Arizona State University (Publisher)
Created2017
155962-Thumbnail Image.png
Description
Programming is quickly becoming as ubiquitous and essential a skill as general mathematics. However, many elementary and high school students are still not aware of what the computer science field entails. To make matters worse, students who are introduced to computer science are frequently being fed only part of what

Programming is quickly becoming as ubiquitous and essential a skill as general mathematics. However, many elementary and high school students are still not aware of what the computer science field entails. To make matters worse, students who are introduced to computer science are frequently being fed only part of what it is about rather than its entire construction. Consequently, they feel out of their depth when they approach college. Research has discovered that by teaching computer science and programming through a problem-driven approach and focusing on a combination of syntax and computational thinking, students can be prepared when entering higher levels of computer science education.

This thesis describes the design, development, and early user testing of a theory-based virtual world for computer science instruction called System Dot. System Dot was designed to visually manifest programming instructions into interactable objects, giving players a way to see coding as tangible entities rather than text on a white screen. In order for System Dot to convey the true nature of computer science, a custom predictive recursive descent parser was embedded in the program to validate any user-generated solutions to pre-defined logical platforming puzzles.

Steps were taken to adapt the virtual world to player behavior by creating a system to detect their learning style playing the game. Through a dynamic Bayesian network, System Dot aims to classify a player’s learning style based on the Felder-Sylverman Learning Style Model (FSLSM). Testers played through the first half of System Dot, which was enough to test out the Bayesian network and initial learning style classification. This classification was then compared to the assessment by Felder’s Index of Learning Styles Questionnaire (ILSQ). Lastly, this thesis will also discuss ways to use the results from the user testing to implement a personalized feedback system for the virtual world in the future and what has been learned through the learning style method.
ContributorsKury, Nizar (Author) / Nelson, Brian C (Thesis advisor) / Hsiao, Ihan (Committee member) / Kobayashi, Yoshihiro (Committee member) / Arizona State University (Publisher)
Created2017
161183-Thumbnail Image.png
Description

For my creative project thesis, I have designed and developed a video game called Amity Academy. Amity Academy is a strategic resource management simulator that aims to subvert genre expectations and challenge generally accepted definitions of success and leadership both in-game and in the real world. It does so by

For my creative project thesis, I have designed and developed a video game called Amity Academy. Amity Academy is a strategic resource management simulator that aims to subvert genre expectations and challenge generally accepted definitions of success and leadership both in-game and in the real world. It does so by moving the focus away from amassing large amounts of in-game currencies and becoming politically or militarily dominant towards caring for the denizens of the social unit the player controls. The player acts as an administrator at a school where they must make decisions on how to best run the institution. Although they are allowed to lead the school however they see fit, the emphasis is on prioritizing strong interpersonal and intracommunity relationships and connections and the wellbeing and happiness of those under their ward. Amity Academy is also part of the newly-emerging “wholesome” or “comfy” game genre. Unlike serious strategy games that can be stressful, Amity Academy presents a self-paced, low-stakes situation. This mood is further encouraged by calming environmental noises and music, a gentle color palette, and a charming art style. The game feels domestic and quaint, almost reminiscent of a Jane Wooster Scott or Mary Singleton painting. You can download and play Amity Academy here: https://mvaughn8.itch.io/amity-academy

ContributorsVaughn, Meghan (Author) / Kobayashi, Yoshihiro (Thesis director) / Holmes, Jeffrey (Committee member) / Barrett, The Honors College (Contributor) / Computing and Informatics Program (Contributor) / Computer Science and Engineering Program (Contributor)
Created2021-12
Description
This paper covers the research details, motivation for, and process of creating a virtual reality (VR) poverty simulation and conventional paper simulation, and testing both for comparison. This was done for a Spring 2024 Barrett Honors College thesis. The resulting simulation is a VR resource scavenging game for one player

This paper covers the research details, motivation for, and process of creating a virtual reality (VR) poverty simulation and conventional paper simulation, and testing both for comparison. This was done for a Spring 2024 Barrett Honors College thesis. The resulting simulation is a VR resource scavenging game for one player set in the forests of Russian Karelia, rendered in a PSX style, simulating the resource scarcity of a rural hunter. This simulation was compared against a paper-based simulation of a rural Appalachian family to see if it could be found to be comparable in expanding the understanding of poverty for testers.
ContributorsReza, Sameer (Author) / Meuth, Ryan (Thesis director) / Kobayashi, Yoshihiro (Committee member) / Barrett, The Honors College (Contributor) / Computer Science and Engineering Program (Contributor)
Created2024-05
Description
The timescale of a simulation, determined by its size of time step, is an incredibly important consideration for resolving quickly varying dynamics. Indeed, if one chooses an observation timescale larger than the fastest forces in a dynamical system, the intricate details produced by that force’s fluctuations are lost. As such,

The timescale of a simulation, determined by its size of time step, is an incredibly important consideration for resolving quickly varying dynamics. Indeed, if one chooses an observation timescale larger than the fastest forces in a dynamical system, the intricate details produced by that force’s fluctuations are lost. As such, for large time steps, we require integrators that are capable of capturing the effect of these missed forces, perhaps in a statistical sense if not exactly. This problem is difficult to solve in general. As such, for simulations where these high frequency details do not need to be resolved, lower order models must be employed that resolve the overall effect of these high frequency details by construction. A representative example of this is the modeling of molecular dynamics and Brownian motion. High order models of Brownian motion, such as the generalized Langevin equations, are computationally infeasible when one wants to resolve the dynamics of, for example, a pollen particle in water. A more reasonable choice of model might be the Langevin equations or even further, the overdamped Langevin equations. As a case study, by posing the generalized Langevin equations as a relaxation system, we show how in choosing the size of time step, we automatically reduce to the effective model, without ever explicitly choosing the model used.
ContributorsRistich, Eron (Author) / Kobayashi, Yoshihiro (Thesis director) / Seyler, Sean (Committee member) / Barrett, The Honors College (Contributor) / Computer Science and Engineering Program (Contributor)
Created2024-05