# HG changeset patch # User nemo # Date 1257455024 0 # Node ID ae5b19308e79c0d839d6401538b52f38ae220f0c # Parent abed6070a66906db4451b0b8f3542a9c1ec0c838 Remove mostly useless comments put in to explain patch long ago. diff -r abed6070a669 -r ae5b19308e79 hedgewars/uLand.pas --- a/hedgewars/uLand.pas Thu Nov 05 20:48:13 2009 +0000 +++ b/hedgewars/uLand.pas Thu Nov 05 21:03:44 2009 +0000 @@ -35,11 +35,9 @@ var Land: TCollisionArray; LandPixels: TLandArray; LandDirty: TDirtyTag; - hasBorder: boolean; // I'm putting this here for now. I'd like it to be toggleable by user (so user can set a border on a non-cave map) - will turn off air attacks - hasGirders: boolean; // I think should be on template by template basis. some caverns might have open water and large spaces. Some islands do not need? It might be better to tweak the girder code based upon space above. dunno. - playHeight, playWidth, leftX, rightX, topY, MaxHedgehogs: Longword; // idea is that a template can specify height/width. Or, a map, a height/width by the dimensions of the image. If the map has pixels near top of image, it triggers border. Maybe not a good idea, but, for now? Could also be used to prevent placing a girder outside play area on maps with hasBorder = true - -// in your coding style, it appears to be "isXXXX" for a verb, and "FooBar" for everything else - should be PlayHeight ? + hasBorder: boolean; + hasGirders: boolean; + playHeight, playWidth, leftX, rightX, topY, MaxHedgehogs: Longword; // idea is that a template can specify height/width. Or, a map, a height/width by the dimensions of the image. If the map has pixels near top of image, it triggers border. procedure GenMap; function GenPreview: TPreview;