Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Spinner Game Demo
#11
(10-04-2024, 03:54 AM)JRace Wrote: Gyruss!

An old coin-op game that has a similar looking ship moving in the same way.  That "where have I played this before?" feeling bugged me.  As a proud old arcade regular, I had to figure it out.

I knew it began with a G!


Quote:I just renamed all the files to lower case for any other Linux user. Hey, I wonder if a command like that exists in Windows?
Not such a simple way, unless Win11 added features to RENAME.  There are many free bulk file renaming utilities, and many file managers such as Free Commander can do bulk renaming with case changes.


Here is a way to change uppercase to lowercase (but not lower-to-upper) from the Windows command line, without additional tools:
Code: (Select All)
for /f "Tokens=*" %f in ('dir /l/b/a-d') do (rename "%f" "%f")
if typed directly into the command prompt, or
Code: (Select All)
for /f "Tokens=*" %%f in ('dir /l/b/a-d') do (rename "%%f" "%%f")
if used in a batch script.


It can also be done in PowersHell: 
Code: (Select All)
dir MYDIR -r | % { if ($_.Name -cne $_.Name.ToLower()) { ren $_.FullName $_.Name.ToLower() } }
(replace MYDIR with the name of the directory that contains the offending files, or leave it out to operate on the current directory.  This method will recurse into subdirectories as well.)


Cool ship you've got there, Terry!
Yes, Gyruss! I completely forgot about that game.

I used to be the DOS batch script king back in the day. Thank you for the scripts, I'm so behind the times now.

I can't take credit for the ship. I found it on the Internet probably 10 years ago. I included the original image below. I modified the image for the game to get rid of the lighting effect in the original.


Attached Files Image(s)
   
New to QB64pe? Visit the QB64 tutorial to get started.
QB64 Tutorial
Reply


Messages In This Thread
Spinner Game Demo - by TerryRitchie - 10-03-2024, 07:53 PM
RE: Spinner Game Demo - by RokCoder - 10-03-2024, 09:32 PM
RE: Spinner Game Demo - by TerryRitchie - 10-03-2024, 09:54 PM
RE: Spinner Game Demo - by Dav - 10-03-2024, 10:12 PM
RE: Spinner Game Demo - by TerryRitchie - 10-03-2024, 10:16 PM
RE: Spinner Game Demo - by Dav - 10-03-2024, 10:22 PM
RE: Spinner Game Demo - by TerryRitchie - 10-03-2024, 10:42 PM
RE: Spinner Game Demo - by Pete - 10-04-2024, 12:52 AM
RE: Spinner Game Demo - by TerryRitchie - 10-04-2024, 03:49 AM
RE: Spinner Game Demo - by JRace - 10-04-2024, 03:54 AM
RE: Spinner Game Demo - by TerryRitchie - 10-04-2024, 02:31 PM
RE: Spinner Game Demo - by TerryRitchie - 10-04-2024, 02:40 PM
RE: Spinner Game Demo - by NakedApe - 10-04-2024, 05:48 PM
RE: Spinner Game Demo - by TerryRitchie - 10-04-2024, 06:34 PM
RE: Spinner Game Demo - by NakedApe - 10-04-2024, 06:52 PM
RE: Spinner Game Demo - by TerryRitchie - 10-04-2024, 08:34 PM
RE: Spinner Game Demo - by NakedApe - 10-04-2024, 09:13 PM
RE: Spinner Game Demo - by NakedApe - 10-04-2024, 10:04 PM
RE: Spinner Game Demo - by SMcNeill - 10-04-2024, 10:24 PM
RE: Spinner Game Demo - by TerryRitchie - 10-04-2024, 10:57 PM
RE: Spinner Game Demo - by NakedApe - 10-05-2024, 04:31 AM
RE: Spinner Game Demo - by SMcNeill - 10-05-2024, 07:59 AM
RE: Spinner Game Demo - by NakedApe - 10-05-2024, 03:08 PM



Users browsing this thread: 5 Guest(s)