Jump to content

Tux

Ultra Members
  • Posts

    1,170
  • Joined

  • Last visited

  • Days Won

    250

Everything posted by Tux

  1. Just built a binary with curl support inside for windows, for once I used the binaries from the curl site because it's impossible to build curl with my current cross compiler, and it saved me the hassle to reinstall the whole mingw system in windows (plus compiling curl is really complex). The page is here : https://curl.haxx.se/windows/ just copy the include and lib dirs to the same directories, the dlls where they are needed, you'll need also the openssl archive listed below curl, and voila, it works. I was ready to make curl support optional because of the complexity of building it, but thanks to this, it remains easy !
  2. It's exaggerated to call this "os", it's still linux the os here, just take one of thes live distributions about games, change the contents to add raine + some roms, and you're done. I'd suggest using the latest git version too... !
  3. Mainly because they change all the time in mame, and it's tiresome to follow... ! I always thought the main set should be the oldest one, and any newer set should have another name, this way you keep compatibility with the old sets, and those who want to try the newest one still can. But it's too late for that ! Anyway they seem to have all the neogeo roms, some cps1 (except the clones then). Those notably missing : puckman and bubble bobble (but they have puzzle bobble, arcade and neogeo). It's not ideal for someone who wants everything of course, but it can be convenient for the casual gamer...
  4. I added internet archive support directly in raine, that is, if a rom it tries to load is not found, it tries to get it from the internet archive. They don't have everything, they seem to have only the parent sets, and it's mame material which means some roms are incompatible, but still, there is quite a lot of stuff over there, and no copyright problem (they state they eventually remove the file in case of copyright problem). The transfer is a little slow but I added a nice progress bar for that, it's quite fun ! I've been having this idea to add internet support in raine for quite a few years already, it's based on curl to make it work easily and on all platforms (no dos, but dos is not considered as a platform !). When the internet archive started to make these roms available it was in a single huge file which was unusable, but they seem to now provide separate links for each rom, and it's been like this for at least 1 year but I just found out. Quite nice !
  5. Switching to sdl2 would not be easy anyway and it's not planned at all for now, even if it would be a good idea on some aspects. It's the problem with raine : too full of low level stuff, it pushes things to the limit and here changing from sdl1 to sdl2 would be almost as hard as what it was to change from allegro to sdl1 ! Ok, thanks for the report, if I am not mistaken it's something from november 2014 (!) which was supposed to help to load broken cue files where somebody renames all the files to the same base name without changing the cue file. But the surprise here is that the bug is only if the iso given in the cue file is not exactly the one on disk, like an iso.gz file on disk while there is an "iso" file in the cue file. So most of my cue files worked, only the one testing an iso.gz file could not work. To be sure I tested again most of my cue files and everything works. It makes sense, in 5 years I guess I should have a few reports about broken cue files, it had to be specific, but I am not 100% sure I found the right bug for you, you'll have to test again. Also I fixed the error case where the iso really can't be found from a cue file, in this case raine displayed an error message but crashed anyway after it. So I am not 100% certain I found your specific bug, so you get a new binary, very long delay for the reply because of broken 1emulation, the new one looks better... rainew.7z
  6. And you get a link to this compiled windows version, full package with locales updated inside, including the italian one, that's the least I can do : https://mega.nz/#!KRcyxYqY!hQvPgdeea5SRZo6LYk9tY7SSfc0dNhe-Rpb6SqSnp3w since 1emulation seems unreliable for now, I keep mega... ! and thanks again for the time you spent on this !
  7. Added crc info in the error message ok, 7z doesn't display the crc but anyway... For the button 2 to cancel, it's "standard" behavior, it works also with a pad/joystick, the 2nd button is assumed to be used to cancel, it's esc on the keyboard. A little weird at start, but convenient when you are used to it.
  8. wow I finally reach the end of this (except for the video bugs which will be one day... !). For the neocd screenshots : not convinced, it would have to scan the directories before you select them for that to be any useful, so it would slow things down with some input/output. Then when you are in the directory it's too late, you are seconds away of seeing the real thing in action... ! For compressing isos : there are actually 2 ways, you can gzip the iso, but it's quite unefficient. The best way is to extract the files from it and put them in a zip, it will be better compressed than simply ziping the iso and super fast. At this point you can just get rid of the cue file, just point raine to the zip you just made, it should guess about the audio tracks when needed (assuming of course their track number is in their name !).
  9. cpu frameskip : it was a way to slow down the game before having something to tune precisely the fps, now using the fps setting in game options is probably better. benchmark : if using opengl just disable double buffer in the opengl options, the limit framerate of course, and you are good to go.
  10. 4-9 : can't reproduce. daioh pause -> cpu at around 6% for raine, 100 being 1 core fully loaded. Tried the windows version in wine too with the same result... 4-10 : not at alll normal, raine is super efficient on the cpu, it's more like cpu in power saving mode at 1 GHz and using 2% cpu power... ! No idea what causes this, never seen or heard anything like that. I just booted in win10 to make sure I get the same results as in linux for that : yes of course. I don't have any xp boot so I can't test xp. You can eventually try to play with the UseRdtsc seeting in the config file but it shouldn't change anything, the rdtsc is only used for the profiler display (f11 key 3 times), there is an sdl timer for the synchronization now. I have run it on quite a few computers now, and never seen anything like that until now... edit : after checking in the code to refresh my memory on this, on its normal behavior it goes explicitely to sleep waiting for the next frame to start which makes cpu usage super low. Start by checking the profiler (f11 key until you see many % numbers in game). The last one, Free should always be the greatest one. If you see it go down while blit goes up, it means your screen has a refresh rate < the game refresh rate, but normally this should not put any load on your cpu, video drivers normally just wait without loading the cpu in this case, unless you have a problem on this side. You can also lower the game refresh rate in this case, 59 fps instead of 60 can be enough for a monitor with 59.25 fps for example. I can't say anything more on this, you'll have to investigate, I can only say it's not normal at all. A last thing though : raine uses only 1 core, it was made for old cpus so there is not much point to use more than 1 core considering its speed.
  11. 3-2 : 2 very stupid bugs when rewriting stuff in a more compact way... ! 3-3 : it's about loading a game which has no region after one which has some. Amazing it got unnoticed for so long, you are good at finding these bugs, you probably spent quite a lot of time on this... ! Graphic bugs : too long to fix, sorry, it's known raine has some graphic bugs on some games, lately I fixed syvalion (controls and zoom effect on the title screen), but I don't do that often because it takes a lot of time. Well since I don't kinow the arcade version of darius 2, and I never played it on any other emulator, I never noticed anything, but it's possible I guess... ! Here too, too long to do now, we'll keep that somewhere for some other time... 3-9 : yes I have sound, and from the very first seconds (music during attract mode). 3-11 : More detail ? Is it really obvious ? 4-1 : you need to actually run something to get some info here ! You weren't really intuitive on this one... ! 4-2 : I'd say that sometimes you loose the background for some unknown reason, yeah I know, hard to track and to fix, maybe one day... 4-3 : ah yes it keeps on fixing the aspect ratio when resizing the window, forgot about this. It's more intended for the difficult fullscreen modes where you want to get rid of these black borders at the cost of some quality. 4-4 : Normal blits are for fullscreen, even if they can work in windowed modes they are not meant to be used in windowed modes, it will work but just don't resize your window all the time then... ! 4-5 : the shaders never resize the window ! The hq2x shader produces an hq2x output but then it's resized to fit the window, it's your job to choose a mode where it makes sense, but anyway you usually get a better zoom wihtout even caring about the mode. In this case yeah the window should probably resize to its previous size all the time, the easiest fix is to always have a window big enough so that it won't resize. This kind of thing is a pain to fix, especially with sdl-1.2, switch to sdl2, one day, in distant future... ! 4-6 : I'd say it's more a windows bug related to sdl-1.2, it works fine in linux, don't expect a fix soon, I hate tracking windows bugs like this... ! 4-7 : ok, there is really a problem here, it seems to use the setting from normal blit to adjust the window size when in opengl, it shouldn't touch the window size at all in this case, I'll try to look into it... ! edit : ok, it's done, now the window is resized only when using normal blits and choosing to set the mode automatically, which should always have been the case, sorry ! Actually this code is some old code from allegro adapted to work with sdl, and it's quite messy. Anyway, much nicer to use when in windowed mode now.
  12. 3-1 : all fixed, these were all very old typo errors in the dsw definition, for the cps1 one (mtwins) it was because my converter didn't like a comment which was added in the middle of the definition and it got lost because of it. Very old bugs, I suspect that at a time they were not making the emu to stop because it's hard to believe they would have gone unnoticed for so long, probably an effect of the not-so-new dipswitches dialog. Much later for the rest, need to get out now !
  13. 1-5 : I don't know how to detect the default language in windows. Raine is multi platform and each platform has a different way to do it, even osx which is an unix doesn't do it the same way as linux (although it's rather similar). But in the case of windows you have to call some windows api function for that apparently, no way to find it from the environment, and since I almost never program the windows api directly I have no idea which one to use. I would need a real windows programmer to take care of the windows version, but again, nobody seems motivated enough for that. So you'll just have to choose the language in the gui, I added the choice for italian now... 1-6 : it's a samurai spirits rpg option, only when translating, if you see it anywhere else, report... and you shouldn't try to use it, it's some really low level stuff. 1-7 : yeah I know, fed up at editing the year all the years so I just stopped, don't complain, I am still here anyway ! 2-1 : not for me, and probably for lots of other people, I only tested on 1 game though, I guess something is broken in your cue, send it, just the cue file, you can use mail for that (or send a link to the whole package eventually). 2-2 : U key usually, check the raine keys, it's associated with "Test"... ! 2-3 : default key is LCTRL s, I even removed my config file to check, reported as LCTRL in the gui and working with LCTRL, and indedd if you put RCTRL instead, it works. 2-4 : yep it's for those who can compile only, reserved to debug builds, you wouldn't know what to do with this anyway, and the cause of the crash is not always there, most of the time you need a debuger for that. 3-1 : if you had a proper console (like the one from mingw, but you are not a dev so I guess it's normal), you would have seen an error when raine quits : "unknown extension 0", it's a collision with some new way to write dipswitches, thanks for finding this one, I'll need more time to look into it... later again then !!!
  14. I didn't really understand what you meant about the logo, your version has more colors which creates a slower color scrolling, it's nice but I also like the old one (faster scrolling = more "lively"). Both are good... The ascii version is a good idea, I never tried to create one... But I wouldn't want to use that in the exe though.... For the translation, yes all the strings are not translated, because I used some script to guess which strings to translate, and they are now encased in _("...") in the source, all the strings which have no _("...") are not translated (and there are some strings which must not be translated). Year : 2006 is just the 1st initialisation of the year field, it's overwritten later by the real thing... this one should not be in the po file... ! That's where the fact that you can't edit the sources is too bad, here you could have added the _(...) where appropriate and then propose a patch for that... ! About categories I am thinking about ditching this entierly, I had never any feedback on this and it can make things awkward when handling a lot of game drivers to update and you don't have the information... Getting rid of it is probably the easiest fix here. For controls / language in the dsw, I don't see why to change the string heree, it's still about controls and language even if it's in the dipswitches... lol for the disappeared "pause when focus lost", I never used this because on my system it thinks it looses focus when switching from gui to game mode in windowed mode, maybe I should add a few frames of lost focus instead of just 1 to make this useful. Anyway I took it back, this dialog is a little crazy taking settings from everywhere and it lost this one when I added the "no hud messages"... ! For the command line in windows I guess it probably works anyway but I can't test it here, you'll have to wait some more for that... ! Later again then ! edit : a last one, for the sprite viewer for vertical games, just switch to fullscreen !!! By the way this feature is just a curiosity for most games, it was added when trying to translate "samurai spirits rpg" neocd game, and that's the only game where it can be useful... but you can use it on any game anyway... After testing quickly in wine : of course the command line works even in windows, maybe you just get no output in your console, in this case use it like that : raine32 -h > output and then check the output file. I might test this later in a real windows, but I am sure it will work. For the .po, you decided to create it without asking anything, good, but normally .po files are created from an initial raine.pot file which is created automatically from the sources using some commands. Then you rename the .po to something related to your locale, edit it, and then pass it to some other commands to generate the .mo file which is actually used by raine, this last pass must be done by the makefile and not by any other tool even if you can use another tool for testing, because these files should be generated on demand. That's why there must be no error in this last pass and why I had to edit your .po. I can keep the ordering of course, if some people want to take the italian .po file as a base to create a new one they'll get something to start from, but the tool which creates the default .po file doesn't care about ordering, it just adds a comment to say where the string comes from in the sources, that's all... ! 1-4 : well I tried to load 1941 first, got the option to appear in the menu, then loaded buble boble, and the option was gone... you'll need to be more specific then !
  15. I have fixed the po as I said, you can grab it from git to see the differences from your file by yourself... Later... For the old dos link, in case you are interested by the fixes inside I am afraid I forgot them completely, this was 4 years ago ! Maybe some of them were merged into the main source, I am not sure about that. Anyway yes the download link is broken for some weird reason, they seem to have installed something to limit the bandwidth I would say, and as usual it seems to fail miserably... ! Sorry I don't have a backup of this specific file (at least none that I know of !), and I can't retrieve it, even using the ftup access I get the same error, the download begins to stall at about 66% and then it takes forever. It seems to progress though, but very slowly, I'll try to keep it to see if I get a usable file in the end.... Yeah I guess I should migrate all this to a saner place one day, but I miss a free host, you could do that on sourceforge once, but they limited so much the shell access that it was crazy to handle it. Oh well... ! I am at 75%, maybe 1 chance left ! Sorry it's totally broken, it never ends and fills the file with crap. Well I guess we can only wait at this point ! edit : here is a link to the very latest dos version (0.64.16) : https://mega.nz/#!3JkxWIoA!DEoZ2SwyylRWYLcpaOVCwZaaNvqBavRC6zSTW-xCikc there is only the exe inside, it needs at least raine.dat from a previous dos installation. And it includes at least the change for vsync discussed in september 2015, that is, there is an explicit call to vsync for dos now (which probably makes things slower, but it also probably works better now that the allegro hacks are mostly lost).
  16. Post too long, it will take me ages to reply ! I already replied to the private one though... And added the italian locale to github, and tested it, it was a few errors in the po file, I wonder how you wrote it, usually you take an already existing .po from an other language for that but oviously you did it differently otherwise you wouldn't have all the errors. Anyway it's fixed and committed... it's working, I guess you can't compile a binary and would like to see it in action ? Too bad these locale files can't be added without a recompilation, and there was a bug added recently there anyway... ! For you super long changelog, it's just some extracted stuff from git, right ? Well the thing about changelogs for users is that you need to filter a lot of things from this to make it usable by a normal user, the git changelog is for developpers, but I am usually too lazy to create a proper one for users, I just summarize things quickly in the release post. Anyway I guess it could eventually be useful... ! By the way the git changelog doesn't have all the releases, far from it, it started sometime in the sdl version so it was already > 0.43. For the link to the dos version : where did you take that from ? You need to download it from the download page so that it works. For the rest : later !!!
  17. Tux

    osx status

    Just tested raine in osx 10.13.3 : the old binary which was built with 10.12 and which is still on the site (0.64.10) doesn't work anymore, apparently it's a problem about security with self-modifying asm code... and since apple officially abandons 32 bits binaries, there is no point following them in their madness. In theory raine should be buildable on 10.13, except that brew already removed all its --universal options and even trying to edit the formulas to add the option back fails with an error while trying to build sdl-1.2 ! + osx 10.13 becomes heavy and requires a powerful setup to run, while raine is light and runs everywhere ! So no more support for osx for the time being, I might eventually try one day to make a full c version of raine, which could run on any cpu and in 64 bits, so it would run even on this crappy osx, but as Antiriad says, raine without the asm wouldn't be exactly raine anymore... so I am not sure at all about this, plus it would take a lot of time, so it's probably going to remain a dream for now... ! It would be nice to be able to at least update the binary to 0.64.16 for osx 10.12, but since brew dropped the universal option already it becomes hard, it's possible but it must be done from scratch, and since I have almost no feedback at all for osx, it's not worth the trouble, clearly.
  18. A forum post to ask if you can send a pm ? what a waste ! Send your pm or post it publicly ! The big difference by the way between the long past where it was comparable to mame and recent years is simply that I was alone to try to keep it alive for way too long while mame team was getting bigger and bigger.
  19. Yeah as you say, maybe all this has aged too much now, 1998 till now it's been 20 years, and it was getting crazier and crazier to be alone on that, it was time to retire for sure ! Oh well don't worry also on your side, for me compiling the dos version is easy the tools are already installed, the hardest part is to upload it actually, the server here is quite troublesome ! For the job, no it's not ideal, far from that, but it's out of the subject anyway ! Anyway it was good talking to you, thanks !
  20. Not sure, dos version has become increasingly difficult to test because the only way to test it on modern hardware is through dosbox (or dosemu which allows to run it at the real cpu speed instead of an emulated one), so it's not ideal to appreciate eventual speed changes, and there is no problem related to the emulated sound card in dos box too... ! Also I never had enough feedback, only 1 user in this forum to report about the dos version, and even in the previous one, posts about the dos version were more than rare. I remember one from India which made me happy though ! Neocd was never made dos compatible because having mp3 decoding in dos is messy, but you can have neogeo assuming you have enough ram for that, there are games which require more than 64 Mb of ram, and it's quite rare in dos ! So in short, you should test and see by yourself. If you can compile your own one then you have more options, you can choose to use seal or allegro for the sound, and you can choose for which cpu to compile (although it won't make a big difference since raine core is in asm... !). I have added a few fixes recently while testing in dosbox : a crash in the about dialog if the history for the game was too long, happened with bublbobl for recent versions of history.dat, and another one if you had a recent cpu with a very long name (like "AMD Ryzen 7 2700 Eight-Core Processor", which is really the name of the cpu !). If you are interested by these and can't compile your own, I can make a very last dos binary !
  21. Tux

    Worth a new binary ?

    I have a mac mini, but from 2004, the time when apple was really good (and Steve Jobs was alive !). I don't use it anymore of course, it's retired at my mother's now, it has only 512 Mb of ram and it shows, + it's a powerpc... ! For all the crap displayed, it's not a surprise, it's a very long standing bug in the server configuration which never recognized correctly the 7z files. Clearly there is more than 1 web server to serve the requests, and not all of them are affected, so depending on the server, you get either a download dialog, or some crap on screen. It's always been like that here... ! Later then... !
  22. Tux

    Worth a new binary ?

    Ok, just posted a 0.64.16, see the git page for the changes but they are mainly what I said. Sorry for the delay, it was because passive mode didn't work anymore with the ftp, and I had forgotten how to deal with this... ! I had to update the conf for that and was not very motivated to do it. I only uploaded the windows binary, I don't think anyone else would need something else. By the way osx has gone crazy, deciding to stop supporting 32 bits binaries and even opengl, so I won't ever worry about osx anymore (that's a good news after all !). In case you forgot, the download page : http://raine.1emulation.com/download/latest.html and the old versions were updated too there : http://raine.1emulation.com/download/old-versions.html by the way there were some fixes for the dos version too, but it was only because I was in the middle of some crazy testing, I hope the dos version is not useful anymore to anyone... ! And merry Christmas to anyone reading this !
  23. Tux

    Worth a new binary ?

    Lol, you are alone, this site is almost dead I think ! Oh well, I'd love that more people could build it, it would be easier, with every thing installed it's : git pull -> update the sources make and that's all, eventually a make install if you want to install it in the system in linux, otherwise you can play directly in the directory, much easier for everyone including me... Ok, I'll try to post a binary anyway this week-end, it will be made with an old gcc though, but it shouldn't matter since raine's core is still in asm...
  24. Tux

    Worth a new binary ?

    There were quite a few fixes since the last released binary, and even "fairy land story" which is now playable (and it was way harder than what I had anticipated, a very old game, but not an easy one !). There are no major fixes anyway, see the git log and post here if you are interested ! The git log is here : https://github.com/zelurker/raine/commits/master (these are mostly fixes for me and those who might be interested by the code itself, just posting here to make sure there is nobody left interested by a binary ! )
  25. Windows specific, fullscreen with double buffer, and it doesn't happen in my old windows 7, didn't test it yet with my new computer which has win10... Anyway a possible workaround is to play in a fullscreen window, there is even an option to use a borderless window if borders are a problem. Or disable double buffer, there might be some tearing but it's rather rare in most games. Sorry, not enough people programming raine !
×
×
  • Create New...