icinga2/itl/hangman
Yonas Habteab 91c7e60df8 Replace all existing copyright headers with SPDX headers
I've used the following command to replace the original copyright header
lines in a C-style comment block:

```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{/\*[^*]*\(\s*c\s*\)\s*(\d{4})\s*Icinga\s+GmbH[^*]*\*/}{// SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n// SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```

For files that use shell-style comments (#) like CMakeLists.txt, I've
used this command:

```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{#.*\(\s*c\s*\)\s(\d{4})\sIcinga\s+GmbH.*}{# SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n# SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```

And for SQL files:

```
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{--.*\(c\)\s(\d{4})\sIcinga\sGmbH.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
$ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{-- Copyright \(c\)\s(\d{4})\sIcinga\s+Development\sTeam.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} +
```
2026-02-04 14:00:05 +01:00

166 lines
2.5 KiB
Text

// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-2.0-or-later
if (!globals.contains("irc")) {
globals.irc = log
}
hm = {
max_errors = 6
h_word = null
h_arr = null
guesses = 0
errors = 0
a_arr = null
misses = ""
if (irc) {
hangman_output = irc
} else {
hangman_output = log
}
function str2arr(str) {
var arr = []
for (i in range(str.len())) {
arr.add(str.substr(i, 1))
}
return arr
}
function init(s) {
s = s.upper()
h_word = s
h_arr = str2arr(h_word)
guesses = 0
errors = 0
a_arr = h_arr.clone()
misses = ""
for (x in range(a_arr.len())) {
a_arr[x] = (h_arr[x] == " ")
}
}
function print_progress() {
var ir
for (x in range(a_arr.len())) {
if (a_arr[x]) {
ir += h_arr[x]
} else {
ir += "_"
}
ir += " "
}
hangman_output(ir)
hangman_output(errors + "/" + (max_errors + 1) + " errors made: " + misses)
}
function create_hint() {
var r = Math.floor(Math.random() * a_arr.len())
if (!a_arr[r]) {
a_arr[r] = true
for (x in range(h_arr.len())) {
if (h_arr[x] == h_arr[r]) {
a_arr[x]=true
}
}
} else {
if (a_arr.contains(false)) {
create_hint()
} else {
winner()
}
}
if (!a_arr.contains(false)) {
winner()
}
}
function hint(i) {
for (x in range(i)) {
create_hint()
}
print_progress()
}
function winner() {
if (h_word) {
hangman_output("Congratulations, you are a winner in " + guesses + " guesses.")
h_word = null
}
}
function guess(s) {
if (!h_word) {
hangman_output("Please set a word with hm.init(\"word\")")
return
}
s = s.upper()
if (s.len() != 1) {
hangman_output("NEIN!")
return
}
var correct = false
for (x in range(h_arr.len())) {
if (h_arr[x] == s) {
a_arr[x] = true
correct = true
}
}
if (!correct) {
misses += s + " "
errors += 1
}
print_progress()
guesses += 1
if (!a_arr.contains(false)) {
winner()
return
}
if (errors > max_errors) {
hangman_output("You died...")
hangman_output(" ________")
hangman_output(" |/ |")
hangman_output(" | (_)")
hangman_output(" | \\|/")
hangman_output(" | |")
hangman_output(" | / \\")
hangman_output(" |")
hangman_output("_|___")
remove("h_word")
return
}
}
function clone() {
var n = Dictionary.prototype.clone.call(this)
if (h_arr) {
n.h_arr = h_arr.clone()
}
if (a_arr) {
n.a_arr = a_arr.clone()
}
return n
}
}