Skip to content

Commit df48cde

Browse files
authored
Add files via upload
Signed-off-by: Bubbles The Dev <[email protected]>
1 parent adf9e16 commit df48cde

14 files changed

+322
-1
lines changed

.gitignore

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Byte-compiled / Python cache
2+
__pycache__/
3+
*.py[cod]
4+
*.pyo
5+
*.pyd
6+
*.pyc
7+
8+
# Virtual environments
9+
.venv/
10+
env/
11+
venv/
12+
13+
# VS Code settings
14+
.vscode/
15+
*.code-workspace
16+
17+
# Jupyter/IPython
18+
.ipynb_checkpoints/
19+
20+
# Log & debug
21+
*.log
22+
*.bak
23+
*.tmp
24+
*.swp
25+
.DS_Store
26+
Thumbs.db
27+
28+
# OS-generated files
29+
ehthumbs.db
30+
Icon?
31+
Desktop.ini
32+
33+
# Compiled binaries & EXEs
34+
*.exe
35+
*.dll
36+
*.so
37+
*.dylib
38+
39+
# Exported or auto-generated models
40+
Export-Models/models/
41+
Export-Models/ultralytics1/
42+
Export-Models/utils/butter-scotch-cookies.txt
43+
44+
# Setup scripts (exclude final EXE, but ignore generated files)
45+
Game-Vision-Auto-Setup/autosetup.log
46+
Game-Vision-Auto-Setup/temp/
47+
Game-Vision-Auto-Setup/__pycache__/
48+
49+
# Ignore installer output
50+
*.whl
51+
*.tar.gz
52+
*.zip
53+
54+
# Ignore these specific batch scripts if they generate output
55+
Main/cupy_cuda11x.bat
56+
Main/install_pytorch.bat
57+
Main/python3119.bat
58+
Main/launcher.bat
59+
AMD-GPU-Only/python3119.bat
60+
61+
# Cache or hash files
62+
*.sha256
63+
*.md5
64+
65+
# Avoid uploading potentially large model files by default
66+
models/*.onnx
67+
models/*.engine
68+
models/*.pt
69+
70+
# Uncomment below if you want to ignore all images
71+
# *.png
72+
# *.jpg
73+
# *.jpeg
74+
75+
# Prevent .env or secrets from being committed
76+
.env
77+
.env.*
78+
79+
# Optional: ignore personal contribution templates
80+
models/Contact-Bubbles.MD
81+
models/Contact.md
82+
models/TeamPlayers.md

APPLICATION-UPDATES.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# APPLICATION-UPDATES
2+
## Patch Updates
3+
4+
5+
**THIS IS NOT AN AI AIMBOT**
6+
It is only an overlay that displays boxes around the enemy for enhanced visuals for disabled users. The code complies with any game's TOS and runs parallel with the game, similar to Crosshair X.
7+
8+
### 3-22-25
9+
- changed the main.py in main folder updated and hopefully made it better.
10+
- updated config.py
11+
- updated requirements.txt
12+
- removed pycuda, dont need it.
13+
- supports .engine without pycuda :)
14+
- main.py supports nvidia, amd, cpu, (auto detects)
15+
16+
# OFFICIAL RELEASE DATE 2026-27

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
63+
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

CONTRIBUTING.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## want to contribute
2+
3+
### please read the repo
4+
5+
- use python 3.11.6
6+
- fork the repo if you want to contribute ONLY!!!
7+
- make a pull request
8+
- there are 5 branches - use `patch-1` to upload or `patch-2` upload new code.
9+
- download the `main-branch`
10+
- live feed works
11+
- trying to get the visual colors to work properly
12+
13+
#### if you find anything else, make a notes-2.txt.

Contact-Bubbles.MD

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## President & Founder of Fnbubbles420 Org
2+
- Bubbles The Dev, @KernFerm
3+
4+
5+
## Discord Support
6+
Join our Discord channel **Game Vision Aid** for assistance, support, or to share your experience.
7+
8+
- **[Discord Link](https://discord.fnbubbles420.org/invite)**
9+
- or Join to Support Fnbubbles420 Org & The Mission.
10+
- Our community is growing be apart of something BIG!!
11+
12+
# [Our Mission](https://www.fnbubbles420.org/ourmission)

LICENSE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# LICENSE
2+
## ***This project is proprietary and all rights are reserved by the author.***
3+
## ***Unauthorized copying, distribution, or modification of this project is strictly prohibited.***
4+
## ***Unless You have written permission from the Developer or the FNBUBBLES420 ORG.***

List-of-Colors.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# List of Common Colors (BGR Format)
2+
3+
- **Black**: `(0, 0, 0)`
4+
- **White**: `(255, 255, 255)`
5+
- **Red**: `(0, 0, 255)`
6+
- **Green**: `(0, 255, 0)`
7+
- **Blue**: `(255, 0, 0)`
8+
- **Cyan**: `(255, 255, 0)`
9+
- **Magenta**: `(255, 0, 255)`
10+
- **Yellow**: `(0, 255, 255)`
11+
- **Orange**: `(0, 165, 255)`
12+
- **Pink**: `(203, 192, 255)`
13+
- **Purple**: `(128, 0, 128)`
14+
- **Gray**: `(128, 128, 128)`
15+
- **Light Gray**: `(211, 211, 211)`
16+
- **Dark Gray**: `(169, 169, 169)`
17+
18+
## Custom Colors in Code:
19+
20+
```python
21+
boundingBoxColor = (0, 255, 0) # Default bounding box color in BGR format
22+
highlightColor = (0, 0, 255) # Color for highlighted objects

README.MD

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
<p align="center">
2+
<img src="https://github.com/FNBUBBLES420-ORG/game-vision-aid/blob/main/banner/Game_Vision_Aid.png" alt="Game Vision Aid Banner" width="400"/>
3+
</p>
4+
5+
6+
<div align="center">
7+
8+
9+
# **🚨COMING SOON🚨**
10+
# **🚨🚨🚨 OFFICIAL RELEASE DATE 2026-27 🚨🚨🚨**
11+
# **🚨🚨🚨BETA TESTING , YOU WILL RECIEVE ROLE WHEN YOU COME INTO OUR DISCORD SERVER 🚨🚨🚨**
12+
---
13+
# IF YOU HAVE `ANY ISSUES` WITH `GAME VISION AID` `JOIN THE DISCORD` THANKS [CLICK HERE](https://github.com/FNBUBBLES420-ORG/game-vision-aid/blob/main/issues_join_discord.MD)
14+
---
15+
# **🛑** ***READ EVERYTHING CAREFULLY !!!*** **🛑**
16+
17+
# **Including**: `Readme.md`, `License.md`, `Code_of_Conduct.md`, `Security.md`.
18+
19+
### **[Contribute](https://github.com/FNBUBBLES420-ORG/game-vision-aid/blob/main/CONTRIBUTING.md)**
20+
21+
## [Funding](https://github.com/FNBUBBLES420-ORG/game-vision-aid/blob/main/.github/FUNDING.yml)
22+
23+
</div>
24+
25+
# 🎮 GameVisionAid
26+
27+
**GameVisionAid** is an accessibility tool designed to assist visually impaired gamers by enhancing visual cues in video games. It uses real-time object detection to create customizable overlays around enemy players, making it easier to identify and engage with them during gameplay.
28+
29+
## 📥 How to Download the Repo (First-Time Users)
30+
31+
Click the link to read [**Instructions**](https://www.gitprojects.fnbubbles420.org/how-to-download-repos) 📄.
32+
33+
### Download ZIP:
34+
1. 📥 Click the green `"Code"` button at the top right of the repository page.
35+
2. 📂 Choose `"Download ZIP"` from the dropdown menu.
36+
3. 📁 This will download a `ZIP file` with the entire repository.
37+
### Extract the ZIP File:
38+
1. 🗂 Find the downloaded `ZIP file` on your computer.
39+
2. 🔧 `Extract` it using your computer's built-in extraction tool or a third-party tool like `WinRAR` or `7-Zip`.
40+
41+
## Discord Link
42+
- head to `game-vision-aid` channel if you need help
43+
- make sure to check out the rest of the server
44+
# **[Discord Link](https://discord.gg/bjbmWaP5p8)**
45+
46+
## Contact
47+
**[Contact](https://github.com/FNBUBBLES420-ORG/game-vision-aid/blob/main/Contact.md)**
48+
49+
---
50+
---
51+
52+
# [Main Folder README.MD](https://github.com/FNBUBBLES420-ORG/game-vision-aid/blob/main/Main/readme.md)
53+
54+
55+
## Support the Project ⭐
56+
57+
# **If you find this project useful, Please Join Our Discord , We Have Lots to Offer, great community , supportive community, mental health support, and more [CLICK TO JOIN DISCORD SERVER](https://discord.gg/8kbgcEugQu)** your support is appreciated.
58+
## FNBubbles420 Org is committed to creating an inclusive environment that supports all individuals, especially those dealing with mental health issues or physical disabilities. Our efforts are focused on providing adaptive technology, mental health resources, peer support groups, and creating educational programs that promote accessibility and mental wellness.
59+
60+
---
61+
# If you Support us make sure to follow [https://github.com/FNBUBBLES420-ORG](https://github.com/FNBUBBLES420-ORG)
62+
---
63+
64+
### Nvidia cuda install
65+
- make sure to have the correct version if you have issue join the discord link is on the `README.MD`.
66+
67+
---
68+
---
69+
## 🛠️ Contributing
70+
Contributions are welcome! Feel free to submit a pull request or open an issue to discuss improvements, bugs, or new features.
71+
```
72+
## want to contribute
73+
74+
### please read the repo
75+
- use python 3.11.9
76+
- fork the repo if you want to contribute ONLY!!!
77+
- make a pull request
78+
- there are 5 branches - use `patch-1` to upload or `patch-2` upload new code.
79+
- download the `main-branch`
80+
- trying to get the live feed to work properly - (shows up multiple times, i will double check)
81+
- trying to get the visual colors to work properly
82+
83+
#### if you find anything else, make a notes-2.txt.
84+
```
85+
## 📜 License
86+
**This project is proprietary, and all rights are reserved by the author. Unauthorized copying, distribution, or modification of this project is strictly prohibited unless you have written permission from the developer or the FNBUBBLES420 ORG.**
87+
88+
## 📧 Contact
89+
- **[Bubbles The Dev](https://github.com/FNBUBBLES420-ORG/game-vision-aid/blob/main/Contact.md)**
90+
- **[Main Office](https://github.com/FNBUBBLES420-ORG/game-vision-aid/blob/main/Contact.md)**
91+
92+
## 👨‍💻 Developed by [Bubbles The Dev](https://github.com/kernferm) - Making gaming more accessible for everyone!
93+
94+
## ⚠️ Disclaimer
95+
`GameVisionAid` **is designed to assist visually impaired or color-blind gamers by enhancing visual cues in video games. It uses real-time object detection to create customizable overlays around enemy players, making it easier to identify and engage with them during gameplay.**
96+
97+
**This tool runs in parallel with any game and does not modify the game files or violate any terms of service. It captures the screen and provides an overlay to help users better perceive in-game elements. The developer is not responsible for any misuse of this tool.**

SECURITY.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
Use this section to tell people about which versions of your project are
6+
currently being supported with security updates.
7+
8+
Game-Vision-Aid
9+
| Version | Supported |
10+
| ------- | ------------------ |
11+
| 3.0.0 | :white_check_mark: |
12+
---------------------------------
13+
14+
15+
torch and torchvision torchaudio
16+
| Version | Supported |
17+
| ----------------------- | ------------------ |
18+
| torch 2.7.0+cu118 | :white_check_mark: |
19+
| torchvision 0.22.0+cu118 | :white_check_mark: |
20+
| torchaudio 2.7.0+cu118 | :white_check_mark: |
21+
22+
---------------------------------
23+
24+
25+
## Reporting a Vulnerability
26+
27+
- **[Report Issue n Details Thanks](https://github.com/FNBUBBLES420-ORG/game-vision-aid/issues)**
28+
- **[Official Pytorch.org Contact](https://pytorch.org/contact-us)**

TeamPlayers.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## President & Founder of Fnbubbles420 Org
2+
- Bubbles The Dev, @KernFerm
3+
- [Bubbles The Dev](https://github.com/kernferm)
4+
5+
6+
## Contributors
7+
- [Kevin Freistroffer](https://github.com/KevinFreistroffer)

0 commit comments

Comments
 (0)