當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Stat::assignRolls方法代碼示例

本文整理匯總了PHP中Stat::assignRolls方法的典型用法代碼示例。如果您正苦於以下問題:PHP Stat::assignRolls方法的具體用法?PHP Stat::assignRolls怎麽用?PHP Stat::assignRolls使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Stat的用法示例。


在下文中一共展示了Stat::assignRolls方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Stat

 function test_updateAcrobatics()
 {
     $str = 2;
     $dex = 2;
     $con = 2;
     $intel = 2;
     $wis = 2;
     $cha = 2;
     $init = 2;
     $max_hp = 2;
     $speed = 2;
     $ac = 2;
     $acrobatics = 2;
     $arcana = 2;
     $animal_handling = 2;
     $athletics = 2;
     $deception = 2;
     $history = 2;
     $insight = 2;
     $intimidation = 2;
     $investigation = 2;
     $medicine = 2;
     $nature = 2;
     $perception = 2;
     $performance = 2;
     $persuasion = 2;
     $proficiency = 2;
     $religion = 2;
     $sleight_of_hand = 2;
     $stealth = 2;
     $survival = 2;
     $test_stat = new Stat($ac, $acrobatics, $animal_handling, $arcana, $athletics, $cha, $con, $deception, $dex, $history, $init, $insight, $intel, $intimidation, $investigation, $max_hp, $medicine, $nature, $perception, $performance, $persuasion, $proficiency, $religion, $speed, $sleight_of_hand, $stealth, $str, $survival, $wis);
     $test_stat->save();
     $six_rolls = [18, 16, 14, 12, 10, 8];
     $classname = "cleric";
     $race = "mountain dwarf";
     $test_stat->assignRolls($six_rolls, $classname, $race);
     $dex = $test_stat->getDex();
     $result = 1;
     $proficiencies = ["insight", "medicine", "acrobatics"];
     $test_stat->updateAcrobatics($proficiencies);
     $acrobatics = $test_stat->getAcrobatics();
     $this->assertEquals($acrobatics, $result);
 }
開發者ID:civilianemail,項目名稱:dnd,代碼行數:44,代碼來源:StatTest.php

示例2: function

//background page
//render background page
$app->get('/background', function () use($app) {
    return $app['twig']->render('background.html.twig', array('backgrounds' => Background::getAll()));
});
//carry race id, class id, background id to stats page
$app->post('/stats', function () use($app) {
    $_SESSION['background'] = $_POST['background_id'];
    $race_id = $_SESSION['race'];
    $race_find = Race::find($race_id);
    $race = $race_find->getName();
    $class_id = $_SESSION['class'];
    $class_find = CharClass::find($class_id);
    $class = $class_find->getName();
    $stats = statRoll();
    Stat::assignRolls($stats, $class, $race);
    return $app['twig']->render('stats.html.twig', array('race' => $_SESSION['race'], 'class' => $_SESSION['class'], 'str' => $_SESSION['str'], 'dex' => $_SESSION['dex'], 'con' => $_SESSION['con'], 'wis' => $_SESSION['wis'], 'int' => $_SESSION['int'], 'cha' => $_SESSION['cha']));
});
//stats page
//render stats page
$app->get('/stats', function () use($app) {
    return $app['twig']->render('stats.html.twig', array('str' => $_SESSION['str'], 'dex' => $_SESSION['dex'], 'con' => $_SESSION['con'], 'wis' => $_SESSION['wis'], 'int' => $_SESSION['int'], 'cha' => $_SESSION['cha']));
});
//loadout page
//render loadout page
$app->post('/skills', function () use($app) {
    $loadouts = loadOuts($_SESSION['class'], $_SESSION['background']);
    $max0 = $loadouts[0][0];
    $max1 = $loadouts[0][1];
    $max2 = $loadouts[0][2];
    $max3 = $loadouts[0][3];
開發者ID:civilianemail,項目名稱:dnd,代碼行數:31,代碼來源:app.php


注:本文中的Stat::assignRolls方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。