![]() |
bisschen Code zum Thema Bitmask
ich habe mich heute ein bisschen mit dem Thema Bitmasken umhergeschlagen und dazu folgenden URL gefunden
![]() Zitat:
Delphi-Quellcode:
//Sets a flag according to the bitmask.
Procedure SetFlag(var Flags: byte; Bitmask: byte); begin Flags := Flags OR Bitmask; end; //Clears a flag according to the bitmask. Procedure ClearFlag(var Flags: byte; Bitmask: byte); begin Flags := Flags AND (NOT Bitmask); end; //Now we define each topping as a bitmask. //Normally you will define your bitmasks as constants because they never change: procedure TForm1.Button1Click(Sender: TObject); var Temp: byte; Toppings: byte; //This will be our flag container variable. IsVegitarian, HasMushrooms: Boolean; begin //Now we can perform operations on our pizza toppings: //To create a basic pizza: Toppings := topCheese OR topTomato; //To add Ham, Cheese and Tomato to a pizza: SetFlag( Toppings, topCheese or topTomato ); SetFlag( Toppings, topHam ); SetFlag( Toppings, topPineapple ); SetFlag( Toppings, topMushrooms ); //To remove chilli from a pizza: ClearFlag( Toppings, topChilli ); //Note: This will do nothing if Toppings didnt contain topChilli in the first place. ClearFlag( Toppings, topHam ); //To check for a vegitarian pizza, you could write the following statement: IsVegitarian := (Toppings AND (topHam or topChicken)) = 0; //Checking that both the topHam and topChicken bits are set to 0. if IsVegitarian then showmessage('IsVegitarian'); //To check if a pizza has mushrooms: HasMushrooms := (Toppings AND topMushrooms) = topMushrooms; // > 0; //Checking that the topMushrooms bit is set. if HasMushrooms then showmessage('HasMushrooms'); //Now lets try something slightly more advanced. Does a pizza have Ham or Pineapple or Both? Temp := ( Toppings AND (topHam OR topPineapple) ); if Temp = topHam then showmessage('Just Ham') else if Temp = topPineapple then showmessage('Just Pineapple') else if Temp = (topHam or topPineapple) then showmessage( 'Both Ham and Pineapple ') else showmessage( 'neither Ham nor Pineapple ') end; und weils gleich noch zum Thema passt etwas Code hier aus der DP
Delphi-Quellcode:
dies als kleiner Beitrag falls sonst mal jemand mit Bitmasken arbeitet
function GetBitMask(const AByte:byte):TBitmask;
var i: integer; begin for i := 0 to 7 do result.Bits[i] := (AByte SHR i AND $1) = $1; end; function BitmaskToByte(AValue:TBitmask):byte; var i:integer; begin result := 0; // Rückgabewert auf 0 setzten. WICHTIG. Weglassen dieser Zeile kann zu faulen Ergebnisen führen. for i := 0 to 7 do if avalue.bits[i] then //Wenn dieser Wert der Bitmaske auf "1" steht, muss das Ergebnis um Inc( Result, 1 SHL i ); //2 hoch der Position in der Bitmaske incrementiert werden. end; (oder ich selber es vergesse und beim nächsten mal suchen in dp dies hier wieder finde :wink: ) :gruebel: und falls jemand noch die Umkehrfunktion zum BitmaskToByte hat - also ByteToBitmask - dann wäre ich sehr froh über diesen Nachtrag! thx |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:38 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz