Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Raycasting Engine Programming, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:12:19
    Introduction and Learning Outcomes
  • Урок 2. 00:02:59
    How to Take this Course
  • Урок 3. 00:06:37
    An Overview of the Raycasting Algorithm
  • Урок 4. 00:07:10
    Raycasting or Raytracing?
  • Урок 5. 00:03:11
    Raycasting Limitations
  • Урок 6. 00:11:27
    A Review of Degrees and Radians
  • Урок 7. 00:16:44
    A Review of Sine Cosine and Tangent
  • Урок 8. 00:07:55
    Defining the 2D Map Grid
  • Урок 9. 00:16:54
    Coding the Map Class
  • Урок 10. 00:06:33
    Player Movement
  • Урок 11. 00:23:13
    Coding the Player Movement
  • Урок 12. 00:10:18
    Coding the Map Collision
  • Урок 13. 00:08:18
    Defining the Field of View
  • Урок 14. 00:16:32
    Coding the Field of View Ray Increments
  • Урок 15. 00:07:49
    Finding Wall Hit
  • Урок 16. 00:22:46
    Finding Horizontal Intersections
  • Урок 17. 00:08:14
    Finding Vertical Intersections
  • Урок 18. 00:27:18
    Coding X-intercept and Y-intercept
  • Урок 19. 00:12:10
    Coding the Horizontal Wall Intersection
  • Урок 20. 00:25:52
    Coding the Vertical Intersection
  • Урок 21. 00:07:41
    Fixing the Intersection Offset Error
  • Урок 22. 00:03:47
    Orientation as Angles or Vectors?
  • Урок 23. 00:06:50
    Wall Projection
  • Урок 24. 00:12:20
    Finding the Wall Strip Height
  • Урок 25. 00:06:03
    Visualizing the Minimap
  • Урок 26. 00:15:24
    Coding the Wall Rendering
  • Урок 27. 00:13:32
    Fixing the Fishbowl Distortion
  • Урок 28. 00:05:28
    Implementing Wall Shading by Depth
  • Урок 29. 00:11:18
    Bright/Dark Wall Sides
  • Урок 30. 00:12:29
    First Steps in C
  • Урок 31. 00:13:56
    Working with Makefile
  • Урок 32. 00:14:46
    Installing Visual Studio and SDL on Windows
  • Урок 33. 00:22:00
    Creating a SDL Window
  • Урок 34. 00:12:24
    SDL Rendering and Event Polling
  • Урок 35. 00:07:14
    Rendering SDL Rectangles
  • Урок 36. 00:06:32
    Game Loop Overview
  • Урок 37. 00:09:51
    Coding a Fixed Time Step Game Loop
  • Урок 38. 00:08:13
    SDL Delay
  • Урок 39. 00:18:58
    Drawing the Map with SDL
  • Урок 40. 00:15:24
    Player Movement and SDL Events
  • Урок 41. 00:03:46
    Implementing Wall Collision in C
  • Урок 42. 00:10:06
    Ray Struct and FOV
  • Урок 43. 00:16:32
    Translating the Horizontal Intersection to C
  • Урок 44. 00:17:07
    Translating the Vertical Intersection to C
  • Урок 45. 00:09:08
    Rendering Rays
  • Урок 46. 00:27:48
    The Color Buffer
  • Урок 47. 00:17:06
    Color Buffer Implementation
  • Урок 48. 00:05:20
    Freeing Allocated Resources
  • Урок 49. 00:17:38
    Creating the Wall Projection
  • Урок 50. 00:01:08
    Exercise: Ceiling & Floor Solid Colors
  • Урок 51. 00:02:02
    Ceiling & Floor Solid Color Implementation
  • Урок 52. 00:11:11
    Representing Textures
  • Урок 53. 00:08:12
    Creating a Texture Programmatically
  • Урок 54. 00:07:26
    Mapping Textures to Wall
  • Урок 55. 00:20:25
    Implementing Wall Texturing
  • Урок 56. 00:07:26
    Multiple Textures
  • Урок 57. 00:14:53
    Multiple Texture Code
  • Урок 58. 00:06:57
    Fixed Size Data Types
  • Урок 59. 00:02:55
    Using Fixed Size Integer Types
  • Урок 60. 00:11:57
    Libraries to Decode PNG Files
  • Урок 61. 00:35:26
    Loading External PNG Files
  • Урок 62. 00:05:31
    Activity: Field of View Distortion
  • Урок 63. 00:11:53
    Understanding the Angle Increment Distortion
  • Урок 64. 00:08:12
    Coding the Angle Increment Distortion Fix
  • Урок 65. 00:28:28
    Full Screen Window
  • Урок 66. 00:36:22
    Refactoring the Graphics File
  • Урок 67. 00:02:49
    Drawing Filled Rectangles
  • Урок 68. 00:20:24
    Refactoring the Map File
  • Урок 69. 00:19:43
    Refactoring the Ray and Player File
  • Урок 70. 00:15:18
    The Line Equation
  • Урок 71. 00:22:25
    Rasterizing Lines
  • Урок 72. 00:05:05
    Coding the DDA Line Algorithm
  • Урок 73. 00:10:20
    Refactoring the Wall Projection File
  • Урок 74. 00:07:11
    Creating a Type Definition for Color Values
  • Урок 75. 00:04:53
    Sending Parameters by Reference
  • Урок 76. 00:06:42
    Refactoring the Ray-Facing Code
  • Урок 77. 00:07:46
    Wall Texture Color Intensity
  • Урок 78. 00:05:52
    Coding the Texture Color Intensity
  • Урок 79. 00:06:17
    Raycasting Sprites
  • Урок 80. 00:04:07
    Sprite Type Definition
  • Урок 81. 00:24:57
    Coding the Sprite Typedef
  • Урок 82. 00:05:01
    Rendering Sprites in the Minimap
  • Урок 83. 00:05:02
    Identifying Visible Sprites
  • Урок 84. 00:08:40
    Coding the Visible Sprites
  • Урок 85. 00:06:21
    Finding the Sprite Distance
  • Урок 86. 00:04:51
    Normalizing Player Rotation Angle
  • Урок 87. 00:12:48
    Calculating the Sprite Projection Height
  • Урок 88. 00:04:15
    Calculating the Sprite X Position
  • Урок 89. 00:09:10
    Sprite Rectangle Position in the Screen
  • Урок 90. 00:16:44
    Displaying Textured Sprites
  • Урок 91. 00:02:27
    Activity: Sorting Sprites
  • Урок 92. 00:04:38
    Sorting Sprites by Distance
  • Урок 93. 00:06:12
    Sprites Behind Walls
  • Урок 94. 00:03:30
    Fixing the Sprite Fishbowl Distortion
  • Урок 95. 00:06:28
    Concluding our Raycasting Implementation
  • Урок 96. 00:10:13
    Notes on Look-up Tables