/character-simulator_threejs

Character Simulator(Walk Simulator) is inspired by digital pavilions and third-person games, and is developed based on the "gallery". The technology stack uses Vue3+TypeScript+Vite

Primary LanguageTypeScriptMIT LicenseMIT

Character Simulator

Character Simulator(Walk Simulator) ๐ŸŽฎ is an exciting game developed using the three.js technology stack, offering players an immersive virtual world to explore. In this game, you'll experience precise collision detection between the scenery and the characters, ensuring a realistic and smooth gaming experience. Additionally, the game features a dual-person perspective switch, allowing you to seamlessly switch between the first-person and third-person views, enhancing your ability to explore the game world. To optimize performance, the camera occlusion optimization feature has been cleverly applied, providing you with smoother game visuals and animations. Moreover, "Walk Simulator" incorporates elements of NES game simulation, allowing you to relive the nostalgia of classic games. Whether you're exploring unknown worlds or taking on various gaming challenges, you'll find joy and excitement in Character Simulator(Walk Simulator)!

๐Ÿ‡จ๐Ÿ‡ณไธญๆ–‡

How to operate?

walk: W/S/A/D

jump: Space

view: left mouse button

Switch person perspective: V

Trigger Interaction: F

Features

  • First and Third Person Perspective Switch.
  • High-Performance Collision Detection.
  • Third-Person Camera Occlusion Handling.
  • Interactive Box Detection.
  • NES Game Emulation.

Additional Note

Although this project is developed using Vue3 and TypeScript, the core functionalities are still encapsulated using an object-oriented approach. Vue code is less invasive, allowing for easier migration to other technology stacks for developers.

Directory structure description

โ”œโ”€โ”€ src                             # Source code
โ”‚   โ”œโ”€โ”€ application                 # Core game source code section
|   |    โ”‚โ”€โ”€ audio                  # Audio class (create positional audio)
|   |    โ”‚โ”€โ”€ character              # Character class (character model control)
|   |    โ”‚โ”€โ”€ control                # Keyboard control class (keyboard key state management)
|   |    โ”‚โ”€โ”€ core                   # Core base class (includes camera, renderer, scene, etc.)
|   |    โ”‚โ”€โ”€ emitter                # Event emitter class (dispatch various events)
|   |    โ”‚โ”€โ”€ environment            # Environment class (create map models, lights, scene textures)
|   |    โ”‚โ”€โ”€ interactionDetection   # Interaction detection class (intersection detection between character box and interaction box triggers)
|   |    โ”‚โ”€โ”€ loader                 # Loader class (fbx, glb, audio, etc. loader management)
|   |    โ”‚โ”€โ”€ utils                  # Utility functions
|   |    |    โ””โ”€โ”€ typeAssert.ts     # Type inference utility functions
|   |    โ”‚โ”€โ”€ world                  # Core game class (used to manage core elements in the game world, including environment, character, interaction detection, and audio components)
|   |    โ””โ”€โ”€ Constants.ts           # Constant definitions (define model/texture/media resource paths, event dispatch names, etc.)
โ”‚   โ”œโ”€โ”€ assets          # Resource folder
|   |    โ”‚โ”€โ”€ audio      # Audio files
|   |    โ”‚โ”€โ”€ font       # Font files
|   |    โ”‚โ”€โ”€ img        # Image files
|   |    โ”‚โ”€โ”€ models     # Model files
|   |    โ”‚โ”€โ”€ nes        # Nes game files
|   |    โ””โ”€โ”€ main.css   # Global stylesheet
โ”‚   โ”œโ”€โ”€ components      # vue็ป„ไปถ
|   |    โ”‚โ”€โ”€ LoadProgress.vue   # Loading component
|   |    โ”‚โ”€โ”€ NesGameDialog.vue  # Nes game dialog component (run Nes games)
|   |    โ””โ”€โ”€ NotifyTips.vue     # Interaction notification component
โ”‚   โ”œโ”€โ”€ typings     # Type declarations
โ”‚   โ”œโ”€โ”€ App.vue     # Entry page
โ”‚   โ””โ”€โ”€ main.js     # Entry file (load components, global styles, initialization, etc.)

Donate

Open source is not easy, your support is my continuous motivation! This project is an open source project, donations are voluntary.

How to donate?

็ˆฑๅ‘็”ตโšก

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Type-Check, Compile and Minify for Production

npm run build