gyle 發表於 2016-4-13 22:19:13

探險機制討論

本文章最後由 gyle 於 2016-4-13 10:57 PM 編輯

小弟看過fallrain大大的探險暴資源的文章後 在網上找了一些遊戲的code來看
但才疏學淺又無學php 睇到一舊雲 想拋磚引玉 請各位高手指導下 當然站長開估最好:lol
我不知道站長真正用的是哪個version的code(寫是1.4 但數據出入太大) 中間改了多少 所以參考了5個version
1 https://github.com/shoghicp/xnov ... nCaseExpedition.php
1.3 http://2moons.googlecode.com/svn ... nCaseExpedition.php
1.4 http://2moons.googlecode.com/svn ... nCaseExpedition.php
1.6 https://searchcode.com/codesearch/view/31727593/
1.7 https://searchcode.com/codesearch/view/3773791/
我個人認為有幾點可以確信:
1.開資源,海賊,黑洞,黑暗物質的機率跟船隻數量,種類無關純粹人品
2.開資源 資源的數量除了跟船隊容量有關外 還有船隊分數
3.開黑暗物質 黑暗物質的數量純粹與人品有關
第一點:
探險機制是用rand() funtion 來決定
在1.3version    用$GetEvent      = mt_rand(1, 6);來決定, 即開資源,海賊,黑洞....等等用1至6表示 然後system隨機開出
1.4version 一樣
但解釋不到'''沒有任何特別事件''這個項機率為甚麼這麼高
1.6version 用$$GetEvent                        = mt_rand(1, 9);來決定 即開資源,海賊,黑洞....等等用1.至9來表示 但''沒有任何特別事件''這項是以7,8,9表示 即1/3機率
1.7version   太難...看不懂 不過應該是''沒有任何特別事件''這項機率降低
第二點:
資源的數量
1.3version跟1.4version
1.6version 1.7version都用同一條code
case 1:      $WitchFound      = mt_rand(1,3);<----這部分開始
      $FindSize = mt_rand(0, 100);
      if(10 < $FindSize) {
                     $WitchSize      = 1;
                     $Factor         = (mt_rand(10, 50) / $WitchFound) * $GLOBALS['CONFIG'][$this->_fleet['fleet_universe']]['resource_multiplier']                        $Message      = $LNG['sys_expe_found_ress_1_'.mt_rand(1,4)];                         }
      elseif(0 < $FindSize && 10 >= $FindSize) {
                     $WitchSize      = 2;
                     $Factor         = (mt_rand(52, 100) / $WitchFound) * $GLOBALS['CONFIG'][$this->_fleet['fleet_universe']]['resource_multiplier'];
                        $Message      = $LNG['sys_expe_found_ress_2_'.mt_rand(1,3)];
      }
       elseif(0 == $FindSize) {
                     $WitchSize      = 3;
                     $Factor         = (mt_rand(102, 200) / $WitchFound) * $GLOBALS['CONFIG'][$this->_fleet['fleet_universe']]['resource_multiplier'];
                        $Message      = $LNG['sys_expe_found_ress_3_'.mt_rand(1,2)];<----到這裡全是機率控制 大致是資源的數量分為三種90% 是金屬, 9%是晶, 1%是氫高
         }      
      $StatFactor = $db->uniquequery("SELECT MAX(total_points) as total FROM `".STATPOINTS."` WHERE `stat_type` = 1 AND `universe` = '".$this->_fleet['fleet_universe']."';");
                        $MaxPoints      = ($StatFactor['total'] < 5000000) ? 9000 : 12000;<----這裡是船分計算,船分高過5百萬 可得乘資源的數量12000 低過乘9000      
                        $Size                = min($Factor * MAX(MIN($FleetPoints / 1000, $MaxPoints), 200), $FleetCapacity);<----這裡是最終計算(比較複雜)首先是計算船分/1000低 還是剛才提及的9000或12000底 選較底那個但最底都有200 ,然後乘$Factor,就是可得乘資源 如果超過船隊容量就只得船隊容量switch($WitchFound)      {
                           case 1:                        $this->UpdateFleet('fleet_resource_metal', $this->_fleet['fleet_resource_metal'] + $Size);
                                              break;
                           case 2:                        $this->UpdateFleet('fleet_resource_crystal', $this->_fleet['fleet_resource_crystal'] + $Size);
                                              break;
                           case 3:                        $this->UpdateFleet('fleet_resource_deuterium', $this->_fleet['fleet_resource_deuterium'] + $Size);
                                              break;
      }      break;
第三點
黑暗物質的數量
case 2:
                              $FindSize = mt_rand(0, 100);
                              if(10 < $FindSize) {
                                       $Size                = mt_rand(100, 300);
                                       $Message      = $LNG['sys_expe_found_dm_1_'.mt_rand(1,5)];
                                       }
                                  elseif(0 < $FindSize && 10 >= $FindSize) {
                                        $Size                = mt_rand(301, 600);
                                        $Message      = $LNG['sys_expe_found_dm_2_'.mt_rand(1,4)];
                                       }
                                 elseif(0 == $FindSize) {
                                       $Size               = mt_rand(601, 3000);
                                       $Message      = $LNG['sys_expe_found_dm_3_'.mt_rand(1,2)];
                              }
                                  $this->UpdateFleet('fleet_resource_darkmatter', $this->_fleet['fleet_resource_darkmatter'] + $Size);
system決定, 90% 100~300單位 9% 301~600單位 1%601~3000單位
最後船種分數:
1versionNo.    分數         船名
202 => 1.0,// 'Petit transporteur'
203 => 1.5,// 'Grand transporteur'
204 => 0.5,// 'Chasseur léger'
205 => 1.5,// 'Chasseur lourd'
206 => 2.0,// 'Croiseur'
207 => 2.5,// 'Vaisseau de bataille'


208 => 0.5,// 'Vaisseau de colonisation'

209 => 1.0,// 'Recycleur'

210 => 0.01, // 'Sonde espionnage'

211 => 3.0,// 'Bombardier'

212 => 0.0,// 'Satellite solaire'

213 => 3.5,// 'Destructeur'

214 => 5.0,// 'Etoile de la mort'

215 => 3.2,// 'Traqueur'

1.4-1.7version
$Expowert[202] = 12;
$Expowert[203] = 47;
$Expowert[204] = 12;
$Expowert[205] = 110;
$Expowert[206] = 47;
$Expowert[207] = 160;
新與舊太大出入難以作準 希望有人破解http://ocalc.ogame-user.de/?sec=_fleet&lang=en 計算器如果計算器準確 個人認為毀滅者應該是最好刷資源 其次是BB










gyle 發表於 2016-4-13 22:51:04

已修改 (少用論壇 一用出事....)

qq6482 發表於 2016-4-13 23:49:14

gyle 發表於 2016-4-13 10:51 PM
已修改 (少用論壇 一用出事....)

什么意思??

admin 發表於 2016-4-13 23:57:32

gyle 發表於 2016-4-13 10:51 PM
已修改 (少用論壇 一用出事....)
{:7_1444:}

$GetEvent       = mt_rand(1, 9);

      $Message      = $LNG['sys_expe_nothing_'.mt_rand(1,8)];

                switch($GetEvent)
                {
                        case 1:
                              $eventSize                = mt_rand(0, 100);
                $factor                        = 0;

                              if(10 < $eventSize)
                              {
                                        $Message      = $LNG['sys_expe_found_ress_1_'.mt_rand(1,4)];
                                        $factor                = mt_rand(100, 300);
                              }
                              elseif(0 < $eventSize && 10 >= $eventSize)
                              {
                                        $Message      = $LNG['sys_expe_found_ress_2_'.mt_rand(1,3)];
                                        $factor                = mt_rand(301, 600);
                              }
                              elseif(0 == $eventSize)
                              {
                                        $Message      = $LNG['sys_expe_found_ress_3_'.mt_rand(1,2)];
                                        $factor                = mt_rand(601, 3000);
                              }

                              $chanceToFound      = mt_rand(1, 6);
                              if($chanceToFound > 3)
                              {
                                        $resourceId      = 901;
                              }
                              elseif($chanceToFound > 1)
                              {
                                        $resourceId      = 902;
                                        $factor                = $factor / 2;
                              }
                              else
                              {
                                        $resourceId      = 903;
                                        $factor                = $factor / 3;
                              }

                              $sql                = "SELECT MAX(total_points) as total FROM %%STATPOINTS%%
                              WHERE `stat_type` = :type AND `universe` = :universe;";

                              $topPoints      = Database::get()->selectSingle($sql, array(
                                        ':type'                => 1,
                                        ':universe'      => $this->_fleet['fleet_universe']
                              ), 'total');

                              if($topPoints > 5000000)
                              {
                                        $maxFactor                = 12000;
                              }
                              elseif($topPoints > 1000000)
                              {
                                        $maxFactor                = 9000;
                              }
                              elseif($topPoints > 100000)
                              {
                                        $maxFactor                = 6000;
                              }
                              else
                              {
                                        $maxFactor                = 2400;
                              }

                              $founded                = round(min($maxFactor, max(200, $factor)) * $fleetPoints);

                              $fleetColName      = 'fleet_resource_'.$resource[$resourceId];
                              $this->UpdateFleet($fleetColName, $this->_fleet[$fleetColName] + $founded);
                        break;
                        case 2:
                              $eventSize   = mt_rand(0, 100);
                $Size       = 0;

                              if(10 < $eventSize) {
                                        $Size                = mt_rand(300, 500);
                                        $Message      = $LNG['sys_expe_found_dm_1_'.mt_rand(1,5)];
                              } elseif(0 < $eventSize && 10 >= $eventSize) {
                                        $Size                = mt_rand(501, 1000);
                                        $Message      = $LNG['sys_expe_found_dm_2_'.mt_rand(1,3)];
                              } elseif(0 == $eventSize) {
                                        $Size               = mt_rand(1001, 2000);
                                        $Message      = $LNG['sys_expe_found_dm_3_'.mt_rand(1,2)];
                              }

                              $this->UpdateFleet('fleet_resource_darkmatter', $this->_fleet['fleet_resource_darkmatter'] + $Size);
                        break;
                        case 3:
                              $eventSize      = mt_rand(0, 100);
                $Size       = 0;
                $Message    = "";
                              
                              if(10 < $eventSize) {
                                        $Size                = mt_rand(10*$config->resource_multiplier, 50*$config->resource_multiplier);
                                        $Message      = $LNG['sys_expe_found_ships_1_'.mt_rand(1,4)];
                              } elseif(0 < $eventSize && 10 >= $eventSize) {
                                        $Size                = mt_rand(52*$config->resource_multiplier, 100*$config->resource_multiplier);
                                        $Message      = $LNG['sys_expe_found_ships_2_'.mt_rand(1,2)];
                              } elseif(0 == $eventSize) {
                                        $Size               = mt_rand(102*$config->resource_multiplier, 200*$config->resource_multiplier);
                                        $Message      = $LNG['sys_expe_found_ships_3_'.mt_rand(1,2)];
                              }

                              $sql                = "SELECT MAX(total_points) as total FROM %%STATPOINTS%%
                              WHERE `stat_type` = :type AND `universe` = :universe;";

                              $topPoints      = Database::get()->selectSingle($sql, array(
                                        ':type'                => 1,
                                        ':universe'      => $this->_fleet['fleet_universe']
                              ), 'total');

                              $MaxPoints               = ($topPoints < 5000000) ? 4500 : 6000;

                              $FoundShips                = max(round($Size * min($fleetPoints, $MaxPoints)), 10000);
                              
                              $FoundShipMess      = "";      
                              $NewFleetArray         = "";
                              
                              $Found                        = array();
                              foreach($reslist['fleet'] as $ID)
                              {
                                        if(!isset($fleetArray[$ID]) || $ID == 208 || $ID == 209 || $ID == 214)
                                                continue;
                                       
                                        $MaxFound                        = floor($FoundShips / ($pricelist[$ID]['cost'] + $pricelist[$ID]['cost']));
                                        if($MaxFound <= 0)
                                                continue;
                                                
                                        $Count                              = mt_rand(0, $MaxFound);
                                        if($Count <= 0)
                                                continue;
                                                
                                        $Found[$ID]                        = $Count;
                                        $FoundShips                         -= $Count * ($pricelist[$ID]['cost'] + $pricelist[$ID]['cost']);
                                        $FoundShipMess         .= '<br>'.$LNG['tech'][$ID].': '.pretty_number($Count);
                                        if($FoundShips <= 0)
                                                break;
                              }
                              
                              if (empty($Found)) {
                                        $FoundShipMess .= '<br><br>'.$LNG['sys_expe_found_ships_nothing'];
                              }

                              foreach($fleetArray as $ID => $Count)
                              {
                                        if(!empty($Found[$ID]))
                                        {
                                                $Count      += $Found[$ID];
                                        }
                                       
                                        $NewFleetArray          .= $ID.",".floatToString($Count).';';
                              }      
                              
                              $Message      .= $FoundShipMess;
                                                      
                              $this->UpdateFleet('fleet_array', $NewFleetArray);
                              $this->UpdateFleet('fleet_amount', array_sum($fleetArray));
                        break;
這才是現在用的
上面的都不太對

整個遊戲的架構
即將進行大修改
資料夾與檔案命名規則
甚至資料表等都會改掉
(不影響遊戲運作與介面)
所以網上找到的code
將會跟本服完全不同
目的是有獨特性以及保密性

我們的版本是客製化版本
跟公開版本不同


當然如果能改成跟官服的探險機制一樣是最好不過了

qq6482 發表於 2016-4-14 01:00:33

来个大神给解读一下A大给的代码呀~~

fallrain 發表於 2016-4-14 03:02:22

本文章最後由 fallrain 於 2016-4-14 01:27 PM 編輯

感谢a大给出代码,解除了我长期以来的疑惑。

大体来说就是:
1. 1/9的几率获得资源。
2. 获得资源的情况下90/100的几率得到因数为100-300随机。
   9/100的几率获得因数为301-600的随机
   1/100的几率获得因数为601-3000的随机
3. 在以上条件下,可获得3/6金属,2/6晶体且因数为1/2,1/6重氢因数为1/3
4. sql查询数据库,获取舰队某分数(因为这里没有说明,我不知道select中的total_points是否是与结构分相关)。
5. 如此分数大于5000000则上限因数为12000,如大于1000000小于等于5000000则为9000,如大于100000小于等于1000000则为6000,如小于等于100000则为2400。
6. 获得资源为(这里有个疑问,$fleetPoints不知道从哪里来的,没有给出定义,也许是结构分的折算):
   1)取200与获得因数的最大值
   2)取上限因数与1)中结果的最小值
   3)乘以结构分
   4)四舍五入取整

比如:
1. 中了1/9可以获得资源
2. 中了9/100,获得因数随机为500
3. 中了2/6,可获得晶体因数变为250
4. 某分数大于5000000,上限因数为12000
5. 取200与获得因数的最大值,则为250。再取上限因数250最小值则为250
6. $fleetPoints乘以250取整为最终获取资源。(我估计$fleetPoints为结构分的1/200)

简单来说,获得资源的几率为1/9,就看能获得多少了。


gyle 發表於 2016-4-14 03:36:26

a950216t 發表於 2016-4-13 11:57 PM
這才是現在用的
上面的都不太對



感謝站長公開:lol

admin 發表於 2016-4-14 16:00:46

fallrain 發表於 2016-4-14 03:02 AM
感谢a大给出代码,解除了我长期以来的疑惑。

大体来说就是:


$total_points=統計排行榜的總積分
$fleetPoints=統計排行榜的艦隊積分
所以不是結構分

admin 發表於 2016-4-15 21:57:08

http://ogame.wikia.com/wiki/Expedition
http://bontchev.my.contact.bg/ogame/expeditions.html

gyle 發表於 2016-4-16 02:10:40

本文章最後由 gyle 於 2016-4-16 02:55 AM 編輯

a950216t 發表於 2016-4-15 09:57 PM
http://ogame.wikia.com/wiki/Expedition
http://bontchev.my.contact.bg/ogame/expeditions.html
-o-間諜衛星超神
似乎max. resource gain在本服是不存在的
頁: [1] 2
檢視完整版本: 探險機制討論