Advertisement
Guest User

Untitled

a guest
Aug 25th, 2021
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. meta:
  2. id: quake_nav
  3. title: Quake 2021 Re-Release Bot Navigation
  4. file-extension: nav
  5. endian: le
  6.  
  7. seq:
  8. - id: magic_number
  9. contents: 'NAV2'
  10. - id: unknown1
  11. type: u4
  12. - id: node_count
  13. type: u4
  14. - id: link_count
  15. type: u4
  16. - id: traversal_count
  17. type: u4
  18. - id: nodes
  19. type: node
  20. repeat: expr
  21. repeat-expr: node_count
  22. - id: node_origins
  23. type: vector3
  24. repeat: expr
  25. repeat-expr: node_count
  26. - id: links
  27. type: link
  28. repeat: expr
  29. repeat-expr: link_count
  30. - id: traversals
  31. type: traversal
  32. repeat: expr
  33. repeat-expr: traversal_count
  34. - id: edict_count
  35. type: u4
  36. - id: edicts
  37. type: edict
  38. repeat: expr
  39. repeat-expr: edict_count
  40.  
  41. types:
  42. node:
  43. seq:
  44. - id: flags
  45. type: u2
  46. - id: connection_count
  47. type: u2
  48. - id: connection_start_index
  49. type: u2
  50. - id: radius
  51. type: u2
  52.  
  53. vector3:
  54. seq:
  55. - id: x
  56. type: f4
  57. - id: y
  58. type: f4
  59. - id: z
  60. type: f4
  61.  
  62. link:
  63. seq:
  64. - id: destination
  65. type: u2
  66. - id: type
  67. type: u2
  68. - id: traversal_index
  69. type: u2
  70.  
  71. traversal:
  72. seq:
  73. - id: node_exit
  74. type: vector3
  75. - id: jump_start
  76. type: vector3
  77. - id: jump_end
  78. type: vector3
  79.  
  80. edict:
  81. seq:
  82. - id: connection_id
  83. type: u2
  84. - id: mins
  85. type: vector3
  86. - id: maxs
  87. type: vector3
  88. - id: targetname_string
  89. type: u4
  90. - id: classname_string
  91. type: u4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement