From b69b58005d37b565bd711505b1e46f538e89de72 Mon Sep 17 00:00:00 2001 From: Timo Smit Date: Wed, 24 Feb 2016 11:48:02 +0100 Subject: [PATCH] Added temporary utility bits module for checking bit flags --- luascripts/util/bits.lua | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 luascripts/util/bits.lua diff --git a/luascripts/util/bits.lua b/luascripts/util/bits.lua new file mode 100644 index 0000000..a07d4c2 --- /dev/null +++ b/luascripts/util/bits.lua @@ -0,0 +1,28 @@ + +-- WolfAdmin module for Wolfenstein: Enemy Territory servers. +-- Copyright (C) 2015-2016 Timo 'Timothy' Smit + +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- at your option any later version. + +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. + +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see . + +local bits = {} + +function bits.hasbit(x, b) + if b == 0 then + return x == b + end + + return x % (b + b) >= b +end + +return bits \ No newline at end of file