Changeset 24 for trunk/www/emulator.php


Ignore:
Timestamp:
Jun 12, 2009, 11:40:00 PM (15 years ago)
Author:
george
Message:
  • Upraveno: Zobrazení ladících záznamů restartů přepracováno na formulářový a tabulkový systém.
  • Přidáno: Doplněny pokyny k instalaci požadovaných systémových RPM balíků.
  • Upraveno: Tabulka ClientVersion přejmenována na Client.
  • Přidáno: Zobrazaní tabulky existujících verzí herního klienta.
  • Přidáno: Tabulka zobrazení dostupných záloh.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/emulator.php

    r23 r24  
    1414    $DbResult = $this->Database->query('SELECT * FROM `Emulator` WHERE `Id`='.$Id);
    1515    $this->Emulator = $DbResult->fetch_assoc();
    16     $DbResult = $this->Database->query('SELECT * FROM `ClientVersion` WHERE `Id`='.$this->Emulator['ClientVersion']);
    17     $this->Emulator['ClientVersion'] = $DbResult->fetch_assoc();
     16    $DbResult = $this->Database->query('SELECT * FROM `Client` WHERE `Id`='.$this->Emulator['Client']);
     17    $this->Emulator['Client'] = $DbResult->fetch_assoc();
    1818  }
    1919 
     
    2424   
    2525    //$this->AddTask('Vytvoření nového emulátoru', array(
    26     //  'ln -s wowclient/'.$this->Emulator['ClientVersion']['Version'].'/maps emulator/'.$this->Emulator['Id'].'/mangos/maps',
    27     //  'ln -s wowclient/'.$this->Emulator['ClientVersion']['Version'].'/dbc emulator/'.$this->Emulator['Id'].'/mangos/dbc',
     26    //  'ln -s wowclient/'.$this->Emulator['Client']['Version'].'/maps emulator/'.$this->Emulator['Id'].'/mangos/maps',
     27    //  'ln -s wowclient/'.$this->Emulator['Client']['Version'].'/dbc emulator/'.$this->Emulator['Id'].'/mangos/dbc',
    2828    //));
    2929    $this->Download();
     
    6666  {
    6767    $this->Task->Add('Vygenerování souborů map', array(
    68       'cd wowclient/'.$this->Emulator['ClientVersion']['Version'].'/client',
     68      'cd wowclient/'.$this->Emulator['Client']['Version'].'/client',
    6969      'wine emulator/'.$this->Id.'/source/contrib/extractor/ad.exe',
    70       'mv wowclient/'.$this->Emulator['ClientVersion']['Version'].'/client/dbc wowclient/'.$this->Emulator['ClientVersion']['Version'].'/',
    71       'mv wowclient/'.$this->Emulator['ClientVersion']['Version'].'/client/maps wowclient/'.$this->Emulator['ClientVersion']['Version'].'/',
     70      'mv wowclient/'.$this->Emulator['Client']['Version'].'/client/dbc wowclient/'.$this->Emulator['Client']['Version'].'/',
     71      'mv wowclient/'.$this->Emulator['Client']['Version'].'/client/maps wowclient/'.$this->Emulator['Client']['Version'].'/',
    7272    ));
    7373    return('Požadavek na vygenerování map zařazen.');
Note: See TracChangeset for help on using the changeset viewer.