做了以下两张图有助于明白,如果想调控概率的话直接修改概率数组即可,实战案例:http://t.csdn.cn/P9QKJ
其实在做概率类相关的界面结果的时候,我们真实做法都是在刷新界面前已经把结果获取到了,然后根据结果行止置惩罚界面上的逻辑,一定要带着这个思想去明白以下内容
一.做加法- 1 /**加*/
- 2 //rate:几率数组(%), total:几率总和(100%)
- 3 // Debug.Log(rand(new int[] { 10, 5, 15, 20, 30, 5, 5,10 }, 100));
- 4 public static int rand(int[] rate, int total)
- 5 {
- 6 int r = Random.Range(1, total+1);
- 7 int t = 0;
- 8 for (int i = 0; i < rate.Length; i++)
- 9 {
- 10 t += rate[i];
- 11 if (r < t)
- 12 {
- 13 return i;
- 14 }
- 15 }
- 16 return 0;
- 17 }
复制代码
二.做减法
[code] 1 /**减*/ 2 //rate:几率数组(%), total:几率总和(100%) 3 // Debug.Log(randRate(new int[] { 10, 5, 15, 20, 30, 5, 5,10 }, 100)); 4 public static int randRate(int[] rate, int total) 5 { 6 int rand = Random.Range(0, total+1); 7 for (int i = 0; i < rate.Length; i++) 8 { 9 rand -= rate;10 if (rand |