os/graphics/windowing/windowserver/test/tscreenconstruct/data/batch/tscreenconstruct.bat
Update contrib.
1 REM tscreenconstruct.bat
2 REM Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
3 REM All rights reserved.
4 REM This component and the accompanying materials are made available
5 REM under the terms of "Eclipse Public License v1.0"
6 REM which accompanies this distribution, and is available
7 REM at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 REM Initial Contributors:
10 REM Nokia Corporation - initial contribution.
20 set WSINI_ARM=%EPOCROOT%epoc32\data\z\system\data\wsini.ini
21 set WSINI_WINSCW=z\system\data\wsini.ini
23 if /i "%1"=="uninstall" goto :uninstall
24 if /i "%1"=="install" goto :install
29 echo This script modifies epoc ini and substitutes in the correct window server ini file for the test
31 echo tscreenconstruct.bat install/uninstall [color] [nga] [changetracking]
33 echo arg1: is either install or uninstall
34 echo arg2: is one of "color4k" "color64k" "color16m" "screenconstruct" "scrmodes"
35 echo arg3: optional indicator for configuration, either nonnga, which is default or nga
36 echo arg4: optional argument to use changetracking mode in wserv, the default mode is non changetracking
40 rem *** START STANDARD FILE-REPLACEMENT FUNCTIONS ***
44 echo INFO: Replacing %DST% with %SRC%
45 copy /y %DST% %DST%.original >NUL
46 if defined SRC copy /y %SRC% %DST% >NUL
49 echo INFO: Restoring %1
50 if not exist %1.original echo ERROR: %1.original does not exist
51 copy /y %1.original %1 >NUL
55 if defined EMULATOR_DATA_DIR (
56 call :replace %EMULATOR_DATA_DIR%\%1 %2
58 call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %2
59 call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %2
63 if defined EMULATOR_DATA_DIR (
64 call :replace %EMULATOR_DATA_DIR%\%1 %EMULATOR_DATA_DIR%\%2
66 call :replace %EPOCROOT%epoc32\release\winscw\udeb\%1 %EPOCROOT%epoc32\release\winscw\udeb\%2
67 call :replace %EPOCROOT%epoc32\release\winscw\urel\%1 %EPOCROOT%epoc32\release\winscw\urel\%2
71 if defined EMULATOR_DATA_DIR (
72 call :restore %EMULATOR_DATA_DIR%\%1
74 call :restore %EPOCROOT%epoc32\release\winscw\udeb\%1
75 call :restore %EPOCROOT%epoc32\release\winscw\urel\%1
78 rem *** END STANDARD FILE-REPLACEMENT FUNCTIONS ***
83 if /i "%3"=="changetracking" set OPT_CT=_changetracking
84 if /i "%4"=="changetracking" set OPT_CT=_changetracking
86 if /i "%3"=="nga" set OPT_NGA=1
88 set WSINI_TEST=wsini%OPT_CT%.ini
89 if /i "%2"=="screenconstruct" set WSINI_TEST=wsini_screenconstruct%OPT_CT%.ini
90 if /i "%2"=="scrmodes" set WSINI_TEST=wsini_scrmodes%OPT_CT%.ini
91 set WSINI_TEST=%EPOCROOT%epoc32\data\z\wstest\screenconstruct\%WSINI_TEST%
93 set EPOC_COLORDEPTH=color16m
94 if /i "%2"=="color4k" set EPOC_COLORDEPTH=color4k
95 if /i "%2"=="color64k" set EPOC_COLORDEPTH=color64k
96 if /i "%2"=="color16m" set EPOC_COLORDEPTH=color16m
98 echo Replacing files with test versions.
99 call :replace %EPOC_INI%
101 echo SYMBIAN_GRAPHICS_USE_GCE on >> %EPOC_INI%
102 echo SYMBIAN_BASE_USE_GCE on >> %EPOC_INI%
104 echo COLORDEPTH %EPOC_COLORDEPTH% >> %EPOC_INI%
105 echo _NewScreen_ >> %EPOC_INI%
106 echo ScreenHeight 640 >> %EPOC_INI%
107 echo ScreenWidth 320 >> %EPOC_INI%
109 call :replace %WSINI_ARM% %WSINI_TEST%
110 call :replace_em %WSINI_WINSCW% %WSINI_TEST%
115 call :restore %EPOC_INI%
116 call :restore %WSINI_ARM%
117 call :restore_em %WSINI_WINSCW%