If you are using a web browser to access the Algobox (like I do), below where it says "Logged in as <user>, Logout", there should be an "edit" button for the scene on the scene page -- so you don't need to reupload!
I feel like that's kind of redundant, I know people who use Algodoo on Windows 7, so I can confirm it works.
I'm also fairly certain my first experiences on Algodoo were on Windows 7! When Windows 10 first came out, I absolutely hated it and refused to upgrade
I dislike Windows 11 in a similar way, but since Windows 10 support ends in a year there's not much I can do about that.
I would hold back on uploading separate, identical scenes for each operating system however -- it could be interpreted as spamming and could get your account banned, plus some people would probably get upset. :<
You could make one big scene that, for example, contains a phunlet made in each operating system, with maybe a description of the experience?
I was born a year before Windows 7 came out, and my parents tell me that when I was born they used Windows XP!
I can't remember that far back (I don't think most people can :<) but I can remember seeing Windows 7 quite frequently when I was a baby!
I used Windows 7 for the first half of my "bratty" phase, but eventually in 2020 I switched to Linux because i thought I was "too cool for windows".
I'm so glad I'm not like that anymore...
(On that note by the way, please take everything I said before 2023 with a grain of salt, especially on Algobox and related sites.
I was super judgemental, thought I knew everything, and thought I was just "so cool".)
I use Windows 11 nowadays. I tried Linux again this year because I was fixated on computer viruses and was terrified of my computer getting hacked, but after the fixation died I switched back to Windows 11.
Windows 8 is my all-time favorite operating system, with Windows 10 and 7 in 2nd and 3rd.
Windows 11 seems like it's getting better, but who knows. In the first few years Windows 10 was out, everyone I knew hated it -- and look at it now!
Sorry for going on this rant about operating systems. They're just another weird obsession of mine
Something I still find really interesting is that, before Windows XP, consumer versions of Windows were actually just (a LOT of) programs running over DOS!
All of this talk makes me want to buy some sort of 6502 hobby computer. Making an operating system sounds so fun!
This is because the white box is also glued to the other 2 boxes without the fixjoint!
Therefore, Algodoo sees the joint as connecting the two boxes with the white box. So this isn't actually a glitch, it's intended behavior!
(if im wrong please let me know!)
It is pretty crazy though. For the entire time I have known about Algodoo (7, nearing 8 years!) it has been 2.1.0. I never thought I would see the day that something different was in that top left corner.
Beta testing 2.2.0 was also super phun!
As for no new tools, to my understanding 2.2 was primarily a maintenance/stability update. From what I've heard, it mainly fixed crashes and updated the code/libraries to modern 64 bit versions. I don't work for Algoryx though, so please take this comment with a grain of salt.
@XLAerospace it seems to work for me!
@THEMANOFALLMANS I actually wondered about that same problem around the time I shared this, and I have a phunlet saved with a crude interface for saving/loading strings, primarily for use with computers. It's designed to plug into the CPUs for my 3 newest Algodoo Computers, and takes over functionality from the disk drive.
Would you like me to remove the computer part, add a basic interface, and publish it?
I do want to warn you though, the system I mentioned is extremely slow. The slowest Dial-Up speeds would be blazing fast in comparison!
For the record by the way -- the system I am talking about converts to ASCII automatically -- although it is kind of slow. I haven't tried it since 2.1.0, so maybe it's faster now!
EDIT: I have put together the scene and uploaded it for you, as a response to this scene.
Each disk is made of 8 tracks, with 24 chunks per track.
Each chunk can store 8 byte, but the last byte is always used to tell the RW head where on the track it is. (note that it doesn't need to know what track it's on because the drive does that on its own!)
So, in total, one disk can store 1,344 bytes.
Some quick googling for how big the original DOOM is gave me a number of 2.39 MB -- or about 2,390,000 bytes.
Dividing this by the amount of data a single chunk can store (7 bytes), we get a total of 341,429 chunks required to store DOOM, assuming it is *exactly* 2.39 MB (which it isnt but i cant get a precise number :< )
This theoretically could be done with tons upon tons of disks (about 1,779 of them). As for a single disk, unfortunately I don't have much faith in Algodoo handling a disk with over 300 thousand parts
Thank you! That was a fun question to answer!
(If I was wrong about something please correct me!)
EDIT: I accidentally did the math for 239 megabytes instead of 2.39. Whoops!
It's hard to fight -- or be fought by -- objects that are glued to the background and don't do anything.. :<
As well, when I manually unstuck the robot from the background -- and itself, and pressed play, the signs fell off of the top of the scene and one of them landed right on the robot, immediately breaking it.
As for the variable problem, it's quite simple to move the variables to the object.
Firstly, open the script menu for the object.
Now, in the top left corner, type _(varname) = (value).
It's important to have a _ before the variable name, otherwise the variable will be declared as "volatile" and will delete itself next time the scene reloads. (this includes undo/redo)
To access the variable through the attached lasers, insert this code at the beginning of the script (i.e. right after (e)=>{)