Skip to content

taka-rl/car_simulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Car Simulator

Environment

OS Windows 10

Library

Library version link
GLFW 3.4 https://www.glfw.org/download.html
GLAD Refer to https://rpxomi.github.io/ https://glad.dav1d.de/
C++ g++ compiler (Windows 10) 13.1.0 -

Folder structure

├── include                         # include
│   ├── glad                        # 
|   │   └── glad.h                  # 
│   ├── GLFW                        # 
|   │   ├── glfw3.h                 # 
|   │   └── glfw3native.h           # 
│   ├── KHR                         # 
|   │   └── khrplatform.h           # 
├── lib                             # library
│   └── libglfw3dll.a               # 
├── src                             # src
│   ├── car.cpp                     # Car class
│   ├── car.h                       #    
│   ├── glad.c                      # 
│   ├── main.cpp                    # 
│   └── main_car.cpp                # Temp cpp file for car.cpp
└── README.md                       # Project documentation

Build setting

Build command

g++ src/main.cpp src/glad.c -o output/program_rectangle -Llib -Iinclude -lglfw3dll

g++ src/car.cpp src/main_car.cpp -o output/program_car.exe

Development Plan

OpenGL

2D

Car

  • Implement Kinematic bicycle model
  • Implement Dynamic bicycle model

Future development ideas

  • 3D environment
  • Path finding
  • Decision making
  • Reinforcement learning
  • Sensors

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published