/* * [Česky] * Projekt: Robot Karel * Copyright: Viz KOPIROVANI v kořenovém adresáři projektu * * [English] * Project: Karel, the Robot * Copyright: See COPYING in the top level directory */ // JavaScript - základní tvar města // Pomocné funkce function zapis_strukturu(obsah) { for ( var y = mesto.velikost.y-1; y >= 0; y-- ) { for ( var x = 0; x < mesto.velikost.x; x++ ) { formatovany_obsah = obsah(x, y); document.write('
' + formatovany_obsah + '
'); } } } // =========================================================================== // =~ Vygenerování města ~==================================================== // Začátek document.write('
'); // Nadpis document.write('
Město
'); // Obsah document.write('
'); // Pozadí document.write('
'); document.write('
'); zapis_strukturu(function(x, y){ return '
'; }); document.write('
'); // Struktura města document.write('
'); zapis_strukturu(function(x, y){ return '
'; }); document.write('
'); // Domov document.write('
' + '
'); // Karel document.write('
' + '
'); // Výběr document.write('
' + '
'); // Maska města - rychlejší řešení, než :hover document.write('
'); zapis_strukturu(function(x, y){ return '
' }); document.write('
'); // Konec document.write('
'); document.write('
'); // =========================================================================== // =~ Základní nastavení ~==================================================== mesto.pozice_karla( karel.pozice ); mesto.orientace_karla( karel.smer ); mesto.pozice_domova( domov.pozice );