Unity记录5.5-地图-随机生成连续洞穴块

文章首发见博客:https://mwhls.top/4852.html

无图/格式错误/后续更新请见首发页。

更多更新请到mwhls.top查看

欢迎留言提问或批评建议,私信不回。
汇总:Unity 记录

摘要:生成连续的洞穴地图块。

随机生成连续洞穴-2023/9/5
  • 之前几天一直没想好洞穴这种四通八达的怎么实现,后来灵机一动,我把四通八达的一个块改成一通二达的四个块就好了。
  • 然后地下的块就直接取地面块的翻转,其它参数都不用改,效果还蛮好的。
实现代码-2023/9/4-2023/9/5
  • 这部分的代码和前面的重复度比较高,有意义的只有新增的十个方向以及它们对应周围方向。
  • 其它部分就是一些查缺补漏,所以只放有意义的注释。
c 复制代码
    /*  ---------- surface direction ----------
     *  ┌-----┬-----┬-----┐
     *  │__777│_____│999__│ I label these directions with numbers 
     *  │_7777│88888│9999_│     corresponding to the number pad positions for the block's solid area.
     *  │77777│88888│99999│ For example, 
     *  ├-----┼-----┼-----┤     1 in left-down, only left-down tiles are solid, i.e. from left to down
     *  │4____│55555│____6│     4 in left, the tiles in left are solid, i.e. from up-left to down-right
     *  │44___│55555│___66│     7,9 are opposite which denotes the empty area
     *  │444__│55555│__666│
     *  ├-----┼-----┼-----┤ Besides, _ means the reverse version
     *  │_____│_____│_____│
     *  │1____│22222│____3│
     *  │11___│22222│___33│
     *  └-----┴-----┴-----┘
     *  0. [empty, ]           : no tile in this block
     *  1. [left, down]        : from left to down
     *  2. [horizontal, ]      : from left to right
     *  3. [right, down]       : from right to down
     *  4. [vertical, left]    : from up-left to down-right
     *  5. [full, ]            : all tiles are soild
     *  6. [vertical, right]   : from up-right to down-left
     *  7. [left, up]          : from left to up
     *  8. [horizontal, ]      : 8. == 2.
     *  9. [right, up]         : from right to up
     * 
     *  ---------- reverse direction ----------
     *  10. [_empty, ]         : the reverse version of 0.
     *  11. [_left, down]      : the reverse version of 1.
     *  12. _2
     *  13. _3
     *  14. _4
     *  15. _5
     *  16. _6
     *  17. _7
     *  18. _8
     *  19. _9
     *  
     *  ---------- direction relation ----------
     * If direction of this block is 'x', which block can connect it?
     *  ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐
     *  │     │ 3 6 │     │       │     │     │     │       │     │ 1 4 │     │
     *  │     │_1 4 │     │       │     │     │     │       │     │_3 6 │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │ 239 │  7  │ 459 │       │     │  2  │     │       │ 567 │  9  │ 127 │
     *  │     │     │_3 6 │       │     │     │     │       │_1 4 │     │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │     │  5  │     │       │     │     │     │       │     │  5  │     │
     *  │     │_123 │     │       │     │     │     │       │     │_123 │     │
     *  └-----┴-----┴-----┘       └-----┴-----┴-----┘       └-----┴-----┴-----┘
     * 
     *  ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐
     *  │     │ 1 4 │     │       │     │ 279 │     │       │     │ 3 6 │     │
     *  │     │_3 6 │     │       │     │     │     │       │     │_1 4 │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │ 567 │  4  │ 036 │       │ 6 7 │  5* │ 4 9 │       │ 014 │  6  │ 459 │
     *  │_1 4 │     │_4 9 │       │_1 4 │     │_3 6 │       │_6 7 │     │_3 6 │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │     │ 4 9 │     │       │     │     │     │       │     │ 6 7 │     │
     *  │     │_6 7 │     │       │     │_123 │     │       │     │_4 9 │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     * 
     *  ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐
     *  │     │  0  │     │       │     │  0  │     │       │     │  0  │     │
     *  │     │_279 │     │       │     │_279 │     │       │     │_279 │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │ 239 │  1  │ 036 │       │ 239 │  2  │ 127 │       │ 014 │  3  │ 127 │
     *  │     │     │_4 9 │       │     │     │     │       │_6 7 │     │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │     │ 4 9 │     │       │     │  5  │     │       │     │ 6 7 │     │
     *  │     │_6 7 │     │       │     │_123 │     │       │     │_4 9 │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     * 
     *  ┌-----┬-----┬-----┐
     *  │     │     │     │   x*: around with x
     *  │     │_279 │     │
     *  ├-----┼-----┼-----┤
     *  │ 1 4 │  0* │ 3 6 │
     *  │_6 7 │     │_4 9 │
     *  ├-----┼-----┼-----┤
     *  │     │ 123 │     │
     *  │     │     │     │
     *  ├-----┼-----┼-----┤
     * 
     *  ---------- reverse relation ----------
     *  
     *  ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐
     *  │     │ 1 4 │     │       │     │     │     │       │     │ 3 6 │     │
     *  │     │_3 6 │     │       │     │     │     │       │     │_1 4 │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │     │ _7  │ 036 │       │     │ _2  │     │       │ 014 │ _9  │     │
     *  │_239 │     │_4 9 │       │     │     │     │       │_6 7 │     │_127 │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │     │0123 │     │       │     │     │     │       │     │0123 │     │
     *  │     │     │     │       │     │     │     │       │     │     │     │
     *  └-----┴-----┴-----┘       └-----┴-----┴-----┘       └-----┴-----┴-----┘
     * 
     *  ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐
     *  │     │ 3 6 │     │       │     │     │     │       │     │ 1 4 │     │
     *  │     │_1 4 │     │       │     │     │     │       │     │_3 6 │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │ 014 │ _4  │ 459 │       │     │  0  │     │       │ 567 │ _6  │ 036 │
     *  │_6 7 │     │_3 6 │       │     │     │     │       │_1 4 │     │_4 9 │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │     │ 6 7 │     │       │     │     │     │       │     │ 4 9 │     │
     *  │     │_4 9 │     │       │     │     │     │       │     │_6 7 │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     * 
     *  ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐       ┌-----┬-----┬-----┐
     *  │     │ 2579│     │       │     │ 2579│     │       │     │ 2579│     │
     *  │     │     │     │       │     │     │     │       │     │     │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │     │ _1  │ 459 │       │     │ _2  │     │       │ 567 │ _3  │     │
     *  │_239 │     │_3 6 │       │_239 │     │_127 │       │_1 4 │     │_127 │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     *  │     │ 6 7 │     │       │     │0123 │     │       │     │ 4 9 │     │
     *  │     │_4 9 │     │       │     │     │     │       │     │_6 7 │     │
     *  ├-----┼-----┼-----┤       ├-----┼-----┼-----┤       ├-----┼-----┼-----┤
     * 
     *  
相关推荐
Unity大海1 小时前
诠视科技Unity SDK开发环境配置、项目设置、apk打包。
科技·unity·游戏引擎
浅陌sss7 小时前
Unity中 粒子系统使用整理(一)
unity·游戏引擎
维度攻城狮11 小时前
实现在Unity3D中仿真汽车,而且还能使用ros2控制
python·unity·docker·汽车·ros2·rviz2
为你写首诗ge14 小时前
【Unity网络编程知识】FTP学习
网络·unity
神码编程16 小时前
【Unity】 HTFramework框架(六十四)SaveDataRuntime运行时保存组件参数、预制体
unity·编辑器·游戏引擎
菲fay18 小时前
Unity 单例模式写法
unity·单例模式
火一线19 小时前
【Framework-Client系列】UIGenerate介绍
游戏·unity
ZKY_2420 小时前
【工具】Json在线解析工具
unity·json
ZKY_241 天前
【Unity】处理文字显示不全的问题
unity·游戏引擎
快乐非自愿2 天前
Netty源码—10.Netty工具之时间轮
java·unity·.net