Archiv verlassen und diese Seite im Standarddesign anzeigen : vvis.exe Kompiliert schlaufig ?
Felyxorez
03. Mai 2006, 15:43
Nun, nachdem ich ein paar Testmaps problemlos gemacht hab und kompilieren konnte, hab ich angefangen meine erste "richtige" Map zu mappen.
Nun, ich hab schon einiges gemacht, doch das Kompilieren mit der vvis.exe unter "normal" rechnet eine ewigkeit und kommt immer wieder auf den Anfang zürück.
Bisher hab ich die Map einfach mit "vvis" auf "fast" getestet, doch jetzt wollte ich wissen was mir dadurch erspart bleibt, bzw, ob es normal ist das das soolange rechnet.
Danke im Vorraus :D
Stard00d
03. Mai 2006, 16:20
vvis auf normal dauert lange ja, kann schonmal bis zu 4 stunden dauern oder auf ganz komplizierten maps bis zu 12 stunden, aber dafür gibts ja vvis auf fast. normal brauchste nur am ende, um die performance zu checken/verbessern.
bei vrad verhält es sich übrigens genauso, bloß daß der maximal 2 stunden braucht.
mmh musste mal genauer nachschauen im compiler-log!
für final comp. hab ich ne batch mit full log!
...hier der quelltext der editorhl2dm_map_fullvisfullrad.bat
@echo off
cls
ECHO.
ECHO ########################
ECHO #hl2 map compiler -full#
ECHO ########################
ECHO.
echo === start =====================
echo compile of %~n1
echo === set toolpath/gamepath =====
echo.
SET toolpath=C:\Programme\Valve\Steam\SteamApps\User\s ourcesdk\bin\
SET gamepath=C:\Programme\Valve\Steam\SteamApps\User\h alf-life 2 deathmatch\hl2mp\maps\
echo.
echo === now working bsp =============================================
title working: bsp %1
%toolpath%vbsp.exe %1
echo === now working vis =============================================
title working: vis %1
%toolpath%vvis.exe -low -v %1
echo === now working rad =============================================
title working: rad
%toolpath%vrad.exe -low -bounce 0 -v %1
echo.
echo copying files
echo.
echo === now working copy to hl2mp (offline)=========================================
echo copy %~n1.bsp %gamepath%%~n1.bsp
echo.
title finished compile of %~n1
pause
^^ das is dieses -v d.h verbose
für's schnelle testen hab ich die editorhl2dm_map_fastvisfullrad.bat
@echo off
cls
ECHO.
ECHO ####################################
ECHO #hl2 map compiler fast:vis,full:rad#
ECHO ####################################
ECHO.
echo === start =====================
echo compile of %~n1
echo === set toolpath/gamepath =====
echo.
SET toolpath=C:\Programme\Valve\Steam\SteamApps\user\s ourcesdk\bin\
SET gamepath=C:\Programme\Valve\Steam\SteamApps\user\h alf-life 2 deathmatch\hl2mp\maps\
echo.
echo === now working bsp =============================================
title working: bsp %1
%toolpath%vbsp.exe %1
echo === now working vis =============================================
title working: vis -fast %1
%toolpath%vvis.exe -fast %1
echo === now working rad =============================================
title working: rad
%toolpath%vrad.exe -low -bounce 0 %1
echo.
echo copying files
echo.
echo === now working copy to hl2mp (offline)=========================================
echo copy %~n1.bsp %gamepath%%~n1.bsp
echo.
title finished compile of %~n1
pause
vBulletin® v4.2.3, Copyright ©2000-2021, Jelsoft Enterprises Ltd.