QTfrontend/gameuiconfig.cpp
changeset 4809 9c7d5f802618
parent 3937 494221b5950e
child 4812 f924be23ffb4
child 4817 cd7ef863afca
equal deleted inserted replaced
4808:7c3e5b52344a 4809:9c7d5f802618
   181     //quint32 rqLowRes = 0x00000001;  // use half land array
   181     //quint32 rqLowRes = 0x00000001;  // use half land array
   182     quint32 rqBlurryLand = 0x00000002;  // downscaled terrain
   182     quint32 rqBlurryLand = 0x00000002;  // downscaled terrain
   183     quint32 rqNoBackground = 0x00000004;  // don't draw background
   183     quint32 rqNoBackground = 0x00000004;  // don't draw background
   184     quint32 rqSimpleRope = 0x00000008;  // avoid drawing rope
   184     quint32 rqSimpleRope = 0x00000008;  // avoid drawing rope
   185     quint32 rq2DWater = 0x00000010;  // disabe 3D water effect
   185     quint32 rq2DWater = 0x00000010;  // disabe 3D water effect
   186     quint32 rqFancyBoom = 0x00000020;  // no fancy explosion effects
   186     quint32 rqAntiBoom = 0x00000020;  // no fancy explosion effects
   187     quint32 rqKillFlakes = 0x00000040;  // no flakes
   187     quint32 rqKillFlakes = 0x00000040;  // no flakes
   188     quint32 rqSlowMenu = 0x00000080;  // ammomenu appears with no animation
   188     quint32 rqSlowMenu = 0x00000080;  // ammomenu appears with no animation
   189     quint32 rqPlainSplash = 0x00000100;  // no droplets
   189     quint32 rqPlainSplash = 0x00000100;  // no droplets
   190     quint32 rqClampLess = 0x00000200;  // don't clamp textures
   190     quint32 rqClampLess = 0x00000200;  // don't clamp textures
   191     quint32 rqTooltipsOff = 0x00000400;  // tooltips are not drawn
   191     quint32 rqTooltipsOff = 0x00000400;  // tooltips are not drawn
   202       case 3:
   202       case 3:
   203         result |= rqBlurryLand | rqKillFlakes | rqPlainSplash;
   203         result |= rqBlurryLand | rqKillFlakes | rqPlainSplash;
   204         break;
   204         break;
   205       case 2:
   205       case 2:
   206         result |= rqBlurryLand | rqKillFlakes | rqPlainSplash | rq2DWater |
   206         result |= rqBlurryLand | rqKillFlakes | rqPlainSplash | rq2DWater |
   207                   rqFancyBoom | rqSlowMenu;
   207                   rqAntiBoom | rqSlowMenu;
   208         break;
   208         break;
   209       case 1:
   209       case 1:
   210         result |= rqBlurryLand | rqKillFlakes | rqPlainSplash | rq2DWater |
   210         result |= rqBlurryLand | rqKillFlakes | rqPlainSplash | rq2DWater |
   211                   rqFancyBoom | rqSlowMenu | rqSimpleRope | rqDesyncVBlank;
   211                   rqAntiBoom | rqSlowMenu | rqSimpleRope | rqDesyncVBlank;
   212         break;
   212         break;
   213       case 0:
   213       case 0:
   214         result |= rqBlurryLand | rqKillFlakes | rqPlainSplash | rq2DWater |
   214         result |= rqBlurryLand | rqKillFlakes | rqPlainSplash | rq2DWater |
   215                   rqFancyBoom | rqSlowMenu | rqSimpleRope | rqDesyncVBlank |
   215                   rqAntiBoom | rqSlowMenu | rqSimpleRope | rqDesyncVBlank |
   216                   rqNoBackground | rqClampLess;
   216                   rqNoBackground | rqClampLess;
   217         break;
   217         break;
   218       default:
   218       default:
   219         fprintf(stderr,"unset value from slider");
   219         fprintf(stderr,"unset value from slider");
   220         break;
   220         break;