OS Detection via Ruby - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Material Development (https://www.save-point.org/forum-8.html) +--- Forum: Scripts Database (https://www.save-point.org/forum-39.html) +---- Forum: RPGMaker XP (RGSS) Engine (https://www.save-point.org/forum-116.html) +---- Thread: OS Detection via Ruby (/thread-7537.html) |
OS Detection via Ruby - DerVVulfman - 09-08-2019 OS Detection via Ruby
Version 1.2 Description While most RPGMaker games are designed for users of the Windows Platform, not everyone who plays games are Windows users. So what of those custom scripts that use the Win32DLL? They won't work on their PCs! This scriptette will determine what OS the player is using. And if used properly, a scripter/coder can write something to turn off those custom Win32API dll systems (if possible for their game). Script The Code Example Calls OS_Detect.execute to generate it. p OS_Detect.version to print it after generating. This generates the result of :windows for most users Notes Normally, if you run RUBY_PLATFORM while using Java, your response would always be 'Java'.... even if running Mac or Windows. This version instead demands a comparison and should distinguish even if running Java as well. Compatability Since it contains no modules or classes, it should work with all Ruby-Based RPGMaker Engines. Credits and Thanks Well, to enough people at stackoverflow that said not to use the RUBY_PLATFORM command. But specific thanks to Thomas Enebo at Stack Overflow that wrote the basis for this script. Not that he helped me figure out the RbConfig file. Terms of Use Free for use, even within commercial products. But due credit to both myself and Thomas Enebo is required. RE: OS Detection via Ruby - kyonides - 09-09-2019 So far it only includes a scepter's defined hash value that isn't reliable at all. For example, if I copy and paste it in my projects located in my ext4 partition, it will say it's running on Windows even if it's actually my Kubuntu Bionic, a GNU/Linux OS. It might only work properly if you had installed Ruby on your OS already. Something that might be more reliable might be the availability of certain Ruby methods only available for Linux compatible OS's, check its permission system or the existence of specific default directories or even better, getting access to the host OS's PATH variable and extract one of its default directories for testing purposes. RE: OS Detection via Ruby - DerVVulfman - 09-09-2019 You have a point. Unfortunately, every RBConfig I found compiled was for a Windows environment... so everything I searched was skewed in that direction. So.... I just took another.
BUMP
True enough, I'm back to using RUBY_PLATFORM, but I'm not asking it to return which system. I'm forcing a comparison to specific systems and ignoring any Java returns.
to Version 1.1 RE: OS Detection via Ruby - kyonides - 09-09-2019 Or just use the short version of it. No need to credit me since it only excludes insignificant details not really needed to run the script Code: class OSError < StandardError I had to replace the error message he provided because it would cause you to read a non related error message instead! Something like NameError: No Error class or module found. |