Вы находитесь на странице: 1из 7

#############################################################################

#
# property groups for options set via the UI
#

set VisualEffects 0
set CarsSims 1
set Shadows 2
set TextureQuality 3
set CloudsFog 4
set Waves 5
set Driver 6
set Cursor 7
set Translucency 8
set CityDetail 9
set ScreenSize 10
set ScreenDepth 11
set DayNight 12

#############################################################################
set Off 0
set On 1
set Low 1
set Medium 2
set High 3
set CursorBW 0
set CursorColor 1
set Software 0
set Hardware 1
set Screen_800x600 0
set Screen_1024x768 1
set Screen_1280x1024 2
set Screen_1600x1200 3
set Depth_16 0
set Depth_32 1
#############################################################################
optionGroup $VisualEffects
option $Low
property particleDensity 0.25
property particleScale 2.0
property maxParticlesTarget 400
property particleDamping 0.0
property particleLODOffset 2 # subtracted from the zoom.
property effectPriorityLevel 1
property useScreenShake false
property useScreenFlash false
property demolishModelThreshold 24
option $Medium
property particleDensity 0.5
property particleScale 2.0
property maxParticlesTarget 1200
property particleDamping 0.0
property particleLODOffset 0 # subtracted from the zoom.
property effectPriorityLevel 3
property useScreenShake true
property useScreenFlash true
property demolishModelThreshold 18
option $High
property particleDensity 1
property particleScale 1
property maxParticlesTarget 5000
property particleDamping 0.0
property particleLODOffset 0 # subtracted from the zoom.
property effectPriorityLevel 5
property useScreenShake true
property useScreenFlash true
property demolishModelThreshold 12
end
optionGroup $CarsSims
# Sadly, we have no off
# option $Off
option $Low
property maxVehiclePct 0.0
property maxPedPct 0.0
property minVehicleZoom 5
property minPedZoom 5
# option $Low
# property maxVehiclePct 0.2
# property maxPedPct 0.2
# property minVehicleZoom 5
# property minPedZoom 5
option $Medium
property maxVehiclePct 0.5
property maxPedPct 0.5
property minVehicleZoom 4
property minPedZoom 5
option $High
property maxVehiclePct 1
property maxPedPct 1
property minVehicleZoom 3
property minPedZoom 4
end
optionGroup $Shadows
# Sadly, we have no off
# option $Off
option $Low
property shadowQuality 0 # off
property shadowModelThreshold 40
property lightingUpdateDelta 0.2
# option $Low
# property shadowQuality 2
# property shadowModelThreshold 40
# property lightingUpdateDelta 0.2
option $Medium
property shadowQuality 3
property shadowModelThreshold 22
property lightingUpdateDelta 0.05
option $High
property shadowQuality 5
property shadowModelThreshold 12
property lightingUpdateDelta 1e-4
end

optionGroup $CloudsFog
option $On
property renderCloudsAndFog true
option $Off
property renderCloudsAndFog false
end
optionGroup $Waves
option $On
property renderWaterEffects true
option $Off
property renderWaterEffects false
end

optionGroup $Cursor
option $CursorBW
property cursorType 1
option $CursorColor
property cursorType 3 # 256-color
end
optionGroup $Translucency
option $On
property preferOpaque false
option $Off
property preferOpaque true
end
optionGroup $CityDetail
option $Low
property renderModelThreshold 12
option $Medium
property renderModelThreshold 6
option $High
property renderModelThreshold 2
end
#############################################################################
#
# Configuration Rules
#
#<
Current configuration sources, with example values:
Flags (has, hasNo):
hardwareDriver = false
DXT = true
fullscreen = true
MMX = true
FPU = true
backingStore = true
Strings (stringMatch, stringNotMatch):
userName = awillmott
appName = SimCity 4
version = 1.0.53.0
osVersion = Windows NT 5.0
computerName = AWILLMOTT-6776
CPU = GenuineIntel
sglDriverName = Software
sglDriverVersion = 1.0
driverName = nv4_disp.dll
driverVersion = 6.13.10.2311, GUID: D7B71E3E-4213-11CF-6E73-6D200BC2CD35
cardName = NVIDIA Quadro2 Pro
cardVersion = Vendor: 10de, Device: 0153, Board: 6d10de, Chipset: 00a4
buildType = Debug
Numbers (atLeast, atMost):
cpuSpeed = 1894
memory = 1024
freeMemory = 580
screenWidth = 1600
screenHeight = 1200
screenBPP = 16
videoMemory = 64
textureMemory = 64
textureStages = 1
bogoFPS = 14.9484
bogoMPPS = 11.7559
processing stops after a rule if the rule matches.
partial rules continue processing.
a rule with -any is accepted if any of its conditions are
met -- the default is that all conditions must be met.
#>

# Sound
partialRule "Sound"
rule "high sound detail"
atLeast cpuSpeed 1500
property soundDetail 2
end
rule "medium sound detail"
atLeast cpuSpeed 800
property soundDetail 1
end
rule "low sound detail"
property soundDetail 0
end
end

partialRule "Memory Use"


rule "low memory"
atMost memory 128
option $CityDetail $Low
option $DayNight $Off
end
rule "medium memory"
atMost memory 192
option $CityDetail $Medium
option $DayNight $Off
end
rule "high memory"
option $CityDetail $High
option $DayNight $On
end
end
partialRule "Recommend Software" -any
stringMatch cardIdentity "3D Labs,*"
atMost videoMemory 15 # less than recommended
property forceSoftwareDriver $prefsFirstTime
end
# must come before software driver rules, after "Recommend Software".
partialRule "No backing store"
hasNo backingStore
property forceSoftwareDriver true # need to force this immediately
end

rule "Standard software"


hasNo hardwareDriver

option $VisualEffects $Medium


option $CarsSims $Low
option $Shadows $Low
option $CloudsFog $Off
option $Waves $Off
option $Cursor $CursorBW
option $Translucency $On
option $Driver $Software
option $ScreenSize $Screen_800x600
option $ScreenDepth $Depth_16
property useSecondStage false
property texBindMaxFree 4 # Software now caches DXT.
property dirtyRectMergeFrames 1 # software is pretty good about BS updates
property TextureBits 32 # software hardwired for 32-bit internally.
rule "medium CPU"
atLeast cpuSpeed 1000
option $Shadows $Low
option $CityDetail $Medium
end
end

rule "Standard hardware"


option $VisualEffects $Medium
option $CarsSims $Medium
option $Shadows $Medium
option $CloudsFog $On
option $Waves $On
option $Cursor $CursorColor
option $Translucency $On
option $CityDetail $High
option $Driver $Hardware
option $ScreenSize $Screen_1024x768
option $ScreenDepth $Depth_32
property useSecondStage false # Default, overridden below in most case
s.
property texBindMaxFree 4 # To stop thrashing, plus a little pad.
property dirtyRectMergeFrames 6 # Default, for low-end card.
property TextureBits 32 # mostly just for preview -- everything els
e
# should be DXT
partialRule "No DXT"
hasNo DXT
property TextureBits 16 # we'll need all the VRAM we can get...
option $ScreenDepth $Depth_16
end
partialRule "Two stages"
atLeast textureStages 2
property useSecondStage true
property dirtyRectMergeFrames 4
end
partialRule "Lotsa vidmem"
atLeast videoMemory 100 # includes AGP
property texBindMaxFree 8 # keep a little more round
end
partialRule "Radeon"
stringMatch cardIdentity "*Radeon*"
# special scrolling mode for Radeons.
property noPartialBackingStoreCopies true
# try to reduce the number of dirty rects.
property dirtyRectMergeFrames 8
# use black and white cursors. The Radeons seem
# to work with colour for a while, but in low
# memory situations revert to flickering.
option $Cursor $CursorBW
end
partialRule "Kyro"
# still doesn't work great -- has problems
# minifying textures in zoom 1.
stringMatch cardIdentity "*Kyro*"
property useSecondStage false
option $CloudsFog $Off
option $Waves $Off
end
partialRule "Poor color cursor" -any
stringMatch cardIdentity "ATI,*128*"
stringMatch cardIdentity "ATI,*Rage*"
stringMatch cardIdentity "ATI,*Mach*"
stringMatch cardIdentity "S3,*"
stringMatch cardIdentity "Trident,*"
stringMatch cardIdentity "3dfx,*" # The banshee reportedly works, b
ut this is simplest.
option $Cursor $CursorBW
end
partialRule "NoAddSigned" -any
# this shows up as odd zone colours.
stringMatch cardIdentity "ATI,*128*"
stringMatch cardIdentity "ATI,*Rage*"
property NoAddSigned true
end
partialRule "Fast card" -any
# we run well on these cards, so up the defaults.
stringMatch cardIdentity "NVidia,*Geforce*"
stringMatch cardIdentity "NVidia,*Quadro*"
stringMatch cardIdentity "ATI,*9700*"
stringMatch cardIdentity "ATI,*8500*"
stringMatch cardIdentity "Matrox,*Parhelia*"
option $VisualEffects $High
option $CarsSims $High
option $Shadows $High
property dirtyRectMergeFrames 2
end
end

# For figuring out what kind of card we are


sinclude "Video Cards.sgr"

Вам также может понравиться

  • Game Development With SDL 2.0
    Game Development With SDL 2.0
    Документ41 страница
    Game Development With SDL 2.0
    Jamie Mellway
    Оценок пока нет
  • To Check
    To Check
    Документ5 страниц
    To Check
    samu Ψ
    Оценок пока нет
  • Config Manager
    Config Manager
    Документ13 страниц
    Config Manager
    BrunoMedina
    Оценок пока нет
  • Excel - How Can I Create Product Keys For VBA Applications So TH
    Excel - How Can I Create Product Keys For VBA Applications So TH
    Документ7 страниц
    Excel - How Can I Create Product Keys For VBA Applications So TH
    Fabio C
    Оценок пока нет
  • Custom Content Objects
    Custom Content Objects
    Документ6 страниц
    Custom Content Objects
    Sergio Caceres
    Оценок пока нет
  • Config Manager
    Config Manager
    Документ14 страниц
    Config Manager
    gabryelmg30
    Оценок пока нет
  • Configuration
    Configuration
    Документ10 страниц
    Configuration
    Rikki Diamond
    Оценок пока нет
  • K Nearest Neighbors MLExpert
    K Nearest Neighbors MLExpert
    Документ3 страницы
    K Nearest Neighbors MLExpert
    GEMA HERNANDEZ
    Оценок пока нет
  • To Check
    To Check
    Документ6 страниц
    To Check
    cArro
    Оценок пока нет
  • DXVK Conf
    DXVK Conf
    Документ11 страниц
    DXVK Conf
    denzmiv
    Оценок пока нет
  • To Check
    To Check
    Документ6 страниц
    To Check
    Josue Alberto Fuentes
    Оценок пока нет
  • AYAPC PC Config Log
    AYAPC PC Config Log
    Документ6 страниц
    AYAPC PC Config Log
    BTS ARMY
    Оценок пока нет
  • Base Light Mass
    Base Light Mass
    Документ7 страниц
    Base Light Mass
    Aamaz
    Оценок пока нет
  • Picom Prev
    Picom Prev
    Документ9 страниц
    Picom Prev
    Zdravko Dimov (thewebmasterp)
    Оценок пока нет
  • Visual Settings
    Visual Settings
    Документ8 страниц
    Visual Settings
    Manuel LLacza
    Оценок пока нет
  • SRD Bugreport 2021-06-20T12 27 57
    SRD Bugreport 2021-06-20T12 27 57
    Документ89 страниц
    SRD Bugreport 2021-06-20T12 27 57
    MIBARRA, Robert Allen M.
    Оценок пока нет
  • To Check
    To Check
    Документ6 страниц
    To Check
    Jose
    Оценок пока нет
  • Mod Bus Map Format
    Mod Bus Map Format
    Документ48 страниц
    Mod Bus Map Format
    Fred
    Оценок пока нет
  • Dosbox CFG
    Dosbox CFG
    Документ5 страниц
    Dosbox CFG
    Tabuleiros Rei
    Оценок пока нет
  • Graphics Rules - SRG
    Graphics Rules - SRG
    Документ15 страниц
    Graphics Rules - SRG
    Danika Jan
    Оценок пока нет
  • Logfile
    Logfile
    Документ13 страниц
    Logfile
    Willy Surya
    Оценок пока нет
  • OpenRailsLog JKK
    OpenRailsLog JKK
    Документ35 страниц
    OpenRailsLog JKK
    Aditya Gaming
    Оценок пока нет
  • Config System
    Config System
    Документ4 страницы
    Config System
    Floria Aurelian
    Оценок пока нет
  • Pelajaran Dapper
    Pelajaran Dapper
    Документ31 страница
    Pelajaran Dapper
    syafruddin2002
    Оценок пока нет
  • Databricks Spark Knowledge Base
    Databricks Spark Knowledge Base
    Документ22 страницы
    Databricks Spark Knowledge Base
    Lokesh Dikshi
    Оценок пока нет
  • C64 Assembler Tutorial/Course
    C64 Assembler Tutorial/Course
    Документ218 страниц
    C64 Assembler Tutorial/Course
    cstroeh
    Оценок пока нет
  • Config
    Config
    Документ17 страниц
    Config
    hanifhussinhashim
    Оценок пока нет
  • Log
    Log
    Документ16 страниц
    Log
    damik.olszewski21
    Оценок пока нет
  • Dos
    Dos
    Документ19 страниц
    Dos
    Biswarup Salui
    Оценок пока нет
  • Before Starting Lab
    Before Starting Lab
    Документ9 страниц
    Before Starting Lab
    Alok Panwar
    Оценок пока нет
  • Hacking The Chrome Dino Game
    Hacking The Chrome Dino Game
    Документ1 страница
    Hacking The Chrome Dino Game
    kornel.fabri
    Оценок пока нет
  • J
    J
    Документ5 страниц
    J
    allansolano65
    Оценок пока нет
  • 605 Working With Metal Advanced
    605 Working With Metal Advanced
    Документ161 страница
    605 Working With Metal Advanced
    JoeBurnett
    Оценок пока нет
  • Logfile
    Logfile
    Документ13 страниц
    Logfile
    Willy Surya
    Оценок пока нет
  • Javascript Beginnings Slides
    Javascript Beginnings Slides
    Документ18 страниц
    Javascript Beginnings Slides
    Motaz Trabelsi
    Оценок пока нет
  • To Check
    To Check
    Документ6 страниц
    To Check
    Maya Shperber
    Оценок пока нет
  • Output Log
    Output Log
    Документ2 страницы
    Output Log
    Adriana Mena
    Оценок пока нет
  • GX Hitung Aa DMG Max
    GX Hitung Aa DMG Max
    Документ48 страниц
    GX Hitung Aa DMG Max
    Dorit Bayu Nuswantoro
    Оценок пока нет
  • Untitled
    Untitled
    Документ17 страниц
    Untitled
    Fariq Priastomo
    Оценок пока нет
  • Wine Tricks
    Wine Tricks
    Документ83 страницы
    Wine Tricks
    marialvsilva
    Оценок пока нет
  • To Check
    To Check
    Документ6 страниц
    To Check
    Daniel Lerma
    Оценок пока нет
  • C - SDL2 - How To Render With One Buffer Instead of Two - Stack Overflow
    C - SDL2 - How To Render With One Buffer Instead of Two - Stack Overflow
    Документ5 страниц
    C - SDL2 - How To Render With One Buffer Instead of Two - Stack Overflow
    ciuciu.denis.2023
    Оценок пока нет
  • Linear Regression PDF
    Linear Regression PDF
    Документ16 страниц
    Linear Regression PDF
    api-540582672
    100% (1)
  • Camera Raw Log Latest v1
    Camera Raw Log Latest v1
    Документ7 страниц
    Camera Raw Log Latest v1
    Gorokin lehero
    Оценок пока нет
  • Hens333 Config
    Hens333 Config
    Документ2 страницы
    Hens333 Config
    Fernand Yaoyao
    Оценок пока нет
  • Log
    Log
    Документ8 страниц
    Log
    chsb2006
    Оценок пока нет
  • Enable Root Access openSUSE
    Enable Root Access openSUSE
    Документ4 страницы
    Enable Root Access openSUSE
    Agung Pambudi
    Оценок пока нет
  • Linear Regression PT
    Linear Regression PT
    Документ16 страниц
    Linear Regression PT
    api-540907926
    100% (1)
  • ECMWF Advanced GPU Topics 1
    ECMWF Advanced GPU Topics 1
    Документ59 страниц
    ECMWF Advanced GPU Topics 1
    kosakakosa
    Оценок пока нет
  • Activity 2
    Activity 2
    Документ14 страниц
    Activity 2
    Sanji Vinsmoke
    Оценок пока нет
  • GMDXPerks Help
    GMDXPerks Help
    Документ8 страниц
    GMDXPerks Help
    Dumitrescu Doru Daniel
    Оценок пока нет
  • Input Onlineyamltools
    Input Onlineyamltools
    Документ11 страниц
    Input Onlineyamltools
    Colin Zachau
    Оценок пока нет
  • How to a Developers Guide to 4k: Developer edition, #3
    How to a Developers Guide to 4k: Developer edition, #3
    От Everand
    How to a Developers Guide to 4k: Developer edition, #3
    Оценок пока нет
  • TripleO OpenStack
    TripleO OpenStack
    Документ36 страниц
    TripleO OpenStack
    baba roshan
    Оценок пока нет
  • Adreport ps1 v2
    Adreport ps1 v2
    Документ29 страниц
    Adreport ps1 v2
    Aman Juneja
    Оценок пока нет
  • Cloudera Spark
    Cloudera Spark
    Документ70 страниц
    Cloudera Spark
    İsmail Cambaz
    Оценок пока нет
  • Log125 323
    Log125 323
    Документ21 страница
    Log125 323
    Matheus De Pereira
    Оценок пока нет
  • Test
    Test
    Документ166 страниц
    Test
    Anonymous WOFRcJh
    Оценок пока нет
  • Hidden Surface Determination: Unveiling the Secrets of Computer Vision
    Hidden Surface Determination: Unveiling the Secrets of Computer Vision
    От Everand
    Hidden Surface Determination: Unveiling the Secrets of Computer Vision
    Оценок пока нет
  • Comprehensive CSS3 Command List, With Descriptions And Typical Mark Up
    Comprehensive CSS3 Command List, With Descriptions And Typical Mark Up
    От Everand
    Comprehensive CSS3 Command List, With Descriptions And Typical Mark Up
    Оценок пока нет
  • MBRCheck 04.12.12 16.30.06
    MBRCheck 04.12.12 16.30.06
    Документ4 страницы
    MBRCheck 04.12.12 16.30.06
    jasmina_cip
    Оценок пока нет
  • Cs Project Acknowledgement
    Cs Project Acknowledgement
    Документ4 страницы
    Cs Project Acknowledgement
    Shyamdaniel
    Оценок пока нет
  • Bootable USB Pen Drive Has Many Advantages Over Other Boot Drives
    Bootable USB Pen Drive Has Many Advantages Over Other Boot Drives
    Документ3 страницы
    Bootable USB Pen Drive Has Many Advantages Over Other Boot Drives
    Debaditya Chakraborty
    Оценок пока нет
  • Power On Self Test
    Power On Self Test
    Документ7 страниц
    Power On Self Test
    saurabh278
    0% (1)
  • Penjualan All Februari 2012
    Penjualan All Februari 2012
    Документ109 страниц
    Penjualan All Februari 2012
    ryan calosa
    Оценок пока нет
  • My PC ToshibaSatellitE
    My PC ToshibaSatellitE
    Документ2 страницы
    My PC ToshibaSatellitE
    Uncle Joe Temon
    Оценок пока нет
  • Evolution of Processor
    Evolution of Processor
    Документ6 страниц
    Evolution of Processor
    Ashley Nohay
    Оценок пока нет
  • Final Enabling Intel Guc Huc Advanced Gpu Features v1 1 1
    Final Enabling Intel Guc Huc Advanced Gpu Features v1 1 1
    Документ13 страниц
    Final Enabling Intel Guc Huc Advanced Gpu Features v1 1 1
    Léurio André
    Оценок пока нет
  • How To Install
    How To Install
    Документ1 страница
    How To Install
    Brillian R S
    Оценок пока нет
  • Windows XP Usb HDD
    Windows XP Usb HDD
    Документ38 страниц
    Windows XP Usb HDD
    dorin65
    Оценок пока нет
  • MYICONS
    MYICONS
    Документ5 страниц
    MYICONS
    gnohm
    Оценок пока нет
  • Key Win
    Key Win
    Документ6 страниц
    Key Win
    Trương Công
    100% (1)
  • Fcremovelog
    Fcremovelog
    Документ208 страниц
    Fcremovelog
    Doccon PT Synergy
    Оценок пока нет
  • List Devices
    List Devices
    Документ52 страницы
    List Devices
    Vicky
    Оценок пока нет
  • Pricelist Anandam - Id 05 September 2023
    Pricelist Anandam - Id 05 September 2023
    Документ2 страницы
    Pricelist Anandam - Id 05 September 2023
    Pupung Pamuji
    Оценок пока нет
  • Pricelist Lettersize
    Pricelist Lettersize
    Документ3 страницы
    Pricelist Lettersize
    Mico de Leon
    Оценок пока нет
  • Readme
    Readme
    Документ3 страницы
    Readme
    Walter Perez
    Оценок пока нет
  • First Boot Log
    First Boot Log
    Документ3 страницы
    First Boot Log
    leninconasencio2
    Оценок пока нет
  • FreeBitcoin Script Roll 10000
    FreeBitcoin Script Roll 10000
    Документ4 страницы
    FreeBitcoin Script Roll 10000
    John Diestro
    60% (5)
  • Computer, Processor, Central Processor, or Microprocessor,: Intel Ted Hoff Instructions Hardware Software
    Computer, Processor, Central Processor, or Microprocessor,: Intel Ted Hoff Instructions Hardware Software
    Документ5 страниц
    Computer, Processor, Central Processor, or Microprocessor,: Intel Ted Hoff Instructions Hardware Software
    Alin Daroi
    Оценок пока нет
  • TR1 234
    TR1 234
    Документ4 страницы
    TR1 234
    Rocha Martin
    Оценок пока нет
  • Debug 1201
    Debug 1201
    Документ38 страниц
    Debug 1201
    stud201201
    Оценок пока нет
  • CorelDraw X3 Versi 13
    CorelDraw X3 Versi 13
    Документ1 страница
    CorelDraw X3 Versi 13
    Handri
    Оценок пока нет
  • Nota
    Nota
    Документ6 страниц
    Nota
    Anonymous nUBxWQx
    Оценок пока нет
  • Ms Dos
    Ms Dos
    Документ16 страниц
    Ms Dos
    professinoal
    88% (8)
  • UPDPCL6Win 3100MU
    UPDPCL6Win 3100MU
    Документ5 страниц
    UPDPCL6Win 3100MU
    Raluca Marinescu
    Оценок пока нет
  • Shortcut
    Shortcut
    Документ12 страниц
    Shortcut
    eddy Rathore
    Оценок пока нет
  • Creating WIM Images For System Deployment Using Windows Vista PE 2
    Creating WIM Images For System Deployment Using Windows Vista PE 2
    Документ24 страницы
    Creating WIM Images For System Deployment Using Windows Vista PE 2
    bodokid
    Оценок пока нет
  • Instalacija Tower Build 1350 I ArmCAD-A Build 1763 Na Win 7 x64 Ultimate
    Instalacija Tower Build 1350 I ArmCAD-A Build 1763 Na Win 7 x64 Ultimate
    Документ2 страницы
    Instalacija Tower Build 1350 I ArmCAD-A Build 1763 Na Win 7 x64 Ultimate
    Nikola Zecevic
    100% (2)
  • Processor Number Feature Table: Desktop - Page 1
    Processor Number Feature Table: Desktop - Page 1
    Документ4 страницы
    Processor Number Feature Table: Desktop - Page 1
    Jose luis Fernandez
    Оценок пока нет