경기방식중에 "리그방식" 로직

· 16년 전 · 2019
소스 정리하다가 옛날에 축구관련 사이트 작업한게 있었는데 있길래 한번 올려봅니다.
작업당시에 기존 존재하는 소스가 있나 싶어서 찾아봤는데 없는거 같길래 만들었어요~

자주 쓰이는 경기방식중에는
1. 리그방식
2. 링크방식
3. 토너먼트방식
이렇게 존재하는데요~

아래 소스는 리그방식 생성소스입니다.
1개의 라운드 안에 중복된 팀이 경기가 잡히지 않게
기본 로직만 있는거라서 도움이 될지 모르겠네요..

<?
////////////////////////////////////////////
$jocnt = 4; // 조 갯수
$roundloopfcnt = 1; // 같은 라운드 반복 횟수:기본값1(국내프로축구에서 자주 쓰임)
$teamcnt = 12; // 조당 팀갯수
////////////////////////////////////////////
for($j=0; $j<$jocnt; $j++){
 // 1개 조내의 경기수(라운드 반복 제외)
 $if_jogamecnt = 0;
 for($i=1; $i<$teamcnt; $i++){
  $if_jogamecnt = $if_jogamecnt + $i;
 }
 // 팀별코드 부여
 for($i=0; $i<$teamcnt; $i++){
  $if_teamcode[$i] = $i+1;
 }
 // 1개 조내의 1개 라운내의 경기수
 $if_roundincnt = floor($teamcnt/2);
 // 라운드 수
 $if_roundcnt = ($if_jogamecnt / $if_roundincnt) * $roundloopfcnt;
 if(!($teamcnt%2)){ // 짝수
  $if_teamcode_0 = array_shift($if_teamcode);
  sort($if_teamcode);
 }else{
  $if_teamcode_temp = $if_teamcode;
  $temp1 = array_pop($if_teamcode);
  for($ti=1; $ti<=count($if_teamcode); $ti++){
   $if_teamcode_temp[$ti] = $if_teamcode[$ti-1];
  }
  $if_teamcode_temp[0] = $temp1;
  ksort($if_teamcode_temp);
  $if_teamcode = $if_teamcode_temp;
 }
 $if_teamcode2 = $if_teamcode;
 for($c=0; $c<$if_roundcnt; $c++){
  for($i=0; $i<$if_roundincnt; $i++){
   $if_gamecnt++;
   if(!($teamcnt%2)){
    if($i==0){
     $team1 = $if_teamcode_0;
     $team2 = $if_teamcode2[0];
    }else{
     $team1 = $if_teamcode2[$i];
     $team2 = $if_teamcode2[count($if_teamcode2)-($i)];
    }
   }else{
    $team1 = $if_teamcode2[$i+1];
    $team2 = $if_teamcode2[count($if_teamcode2)-($i+1)];
   }
   echo "No. ".$if_gamecnt." || ".($j+1)." 조 | ".($c+1)." 라운드 | ".$team1."팀 vs ".$team2."팀<br>";
  }
  $temp1 = array_pop($if_teamcode2);
  for($ti=1; $ti<=count($if_teamcode2); $ti++){
   $if_teamcode3[$ti] = $if_teamcode2[$ti-1];
  }
  $if_teamcode3[0] = $temp1;
  ksort($if_teamcode3);
  $if_teamcode2 = $if_teamcode3;
 }
}
?>
[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
15년 전 조회 1,020
15년 전 조회 1,484
15년 전 조회 1,461
15년 전 조회 3,239
15년 전 조회 3,598
15년 전 조회 2,275
15년 전 조회 1,758
15년 전 조회 2,362
15년 전 조회 1,852
15년 전 조회 1,471
15년 전 조회 4,163
15년 전 조회 1,821
15년 전 조회 1,900
15년 전 조회 3,172
15년 전 조회 1,862
15년 전 조회 4,557
15년 전 조회 2,761
15년 전 조회 3,543
15년 전 조회 2,176
15년 전 조회 2,407
15년 전 조회 1,696
15년 전 조회 4,753
15년 전 조회 4,387
16년 전 조회 4,190
16년 전 조회 5,597
16년 전 조회 3,824
16년 전 조회 2,184
16년 전 조회 2,144
16년 전 조회 2,284
16년 전 조회 1,990
16년 전 조회 4,404
16년 전 조회 3,329
16년 전 조회 2,473
16년 전 조회 2,080
16년 전 조회 2,274
16년 전 조회 2,775
16년 전 조회 1,850
16년 전 조회 2,779
16년 전 조회 2,106
16년 전 조회 2,234
16년 전 조회 1,880
16년 전 조회 2,584
16년 전 조회 1,892
16년 전 조회 2,314
16년 전 조회 2,481
16년 전 조회 1,573
16년 전 조회 1,632
16년 전 조회 2,286
16년 전 조회 5,704
16년 전 조회 2,020
16년 전 조회 2,531
16년 전 조회 2,723
16년 전 조회 1,885
16년 전 조회 1,655
16년 전 조회 2,591
16년 전 조회 5,310
16년 전 조회 2,578
16년 전 조회 3,237
16년 전 조회 2,101
16년 전 조회 3,987
16년 전 조회 4,806
16년 전 조회 3,439
16년 전 조회 2,695
16년 전 조회 2,806
16년 전 조회 3,023
16년 전 조회 2,559
16년 전 조회 5,899
16년 전 조회 3,727
16년 전 조회 1,711
16년 전 조회 2,056
16년 전 조회 5,422
16년 전 조회 2,687
16년 전 조회 3,750
16년 전 조회 3,034
16년 전 조회 1,913
16년 전 조회 5,732
16년 전 조회 2,845
16년 전 조회 6,331
16년 전 조회 2,296
16년 전 조회 4,361
16년 전 조회 3,381
16년 전 조회 2,560
16년 전 조회 2,577
16년 전 조회 4,712
16년 전 조회 3,640
16년 전 조회 3,173
16년 전 조회 3,312
16년 전 조회 2,436
16년 전 조회 2,095
16년 전 조회 2,031
16년 전 조회 1,731
16년 전 조회 2,038
16년 전 조회 2,235
16년 전 조회 1,939
16년 전 조회 5,184
16년 전 조회 4,184
16년 전 조회 2,122
16년 전 조회 1,893
16년 전 조회 2,617
16년 전 조회 4,876