Bitfield: Difference between revisions
Jump to navigation
Jump to search
Hendricks266 (talk | contribs) No edit summary |
No edit summary |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
A '''bitfield''' is an integer value treated as a sequence of bits (binary digits) which can be toggled individually as flags. | A '''bitfield''' is an integer value treated as a sequence of bits (binary digits) which can be toggled individually as flags. In conventional decimal math, each flag is represented a a power of two number: 1, 2, 4, 8, 16, 32, etc. To toggle each flag, you add them together. The resulting sum is what appears in a variable or structure member. | ||
If it is not apparent already, setting a bitfield to '''0''' disables all flags. | |||
Notable bitfields include: | Notable bitfields include: | ||
*[[cstat]] | *[[cstat (sprite)|cstat]] | ||
*[[cstat(wall)|cstat (wall)]] | *[[cstat(wall)|cstat (wall)]] | ||
*[[ceilingstat]] | *[[ceilingstat]] | ||
Line 17: | Line 19: | ||
See the [[:Category:Bitfields|complete list of bitfields]]. | See the [[:Category:Bitfields|complete list of bitfields]]. | ||
[[Category:Scripting documentation]] |
Latest revision as of 17:01, 20 February 2020
A bitfield is an integer value treated as a sequence of bits (binary digits) which can be toggled individually as flags. In conventional decimal math, each flag is represented a a power of two number: 1, 2, 4, 8, 16, 32, etc. To toggle each flag, you add them together. The resulting sum is what appears in a variable or structure member.
If it is not apparent already, setting a bitfield to 0 disables all flags.
Notable bitfields include:
- cstat
- cstat (wall)
- ceilingstat
- floorstat
- PROJ_WORKSLIKE
- WEAPONx_FLAGS
- spriteflags
- htflags
- mdflags
- orientation
- bits
- extbits
- LOGO_FLAGS
See the complete list of bitfields.