323
you are viewing a single comment's thread
view the rest of the comments
[-] joshfaulkner@lemmy.world 2 points 3 months ago

I asked this question on this post on a different instance, but would there be issues being that the code compares a float to integer zero "0"?

[-] BombOmOm@lemmy.world 2 points 3 months ago* (last edited 3 months ago)

Since the health is a float, yeah, it can create issues. A health of 0.000000001 is greater than zero, but that would almost assuredly be displayed to the user as simply 0, causing player confusion. The easiest solution is to have health and damage always be integers. A less great solution is to use a non-floating point decimal format. If such doesn't exist in your language, you can emulate one by having health and damage both always be integers, but move the decimal point over, say two points, when displaying to the user.

this post was submitted on 28 Mar 2024
323 points (96.3% liked)

Programmer Humor

18388 readers
682 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS