Dookie Posted July 21, 2012 Share Posted July 21, 2012 Hello, we all know that ET cant be minimized by pressing any button's, there is also many minimizer's over the internet and there is also alz+enter option, but I was wondering, is it somehow possible, maybe to add smthing like a TAB or smthing when you click esc that there is a tab named minimize game or something? And when you click on it game gets minimized? Ive came to this idea after ive read about this new screen resolutions in options, so is this even possible to be made? Quote Link to comment Share on other sites More sharing options...
clan DIABOLIK Posted July 21, 2012 Share Posted July 21, 2012 +1 (exist in ETnam) Quote Link to comment Share on other sites More sharing options...
Chuckun Posted July 21, 2012 Share Posted July 21, 2012 (edited) Great suggestion! I already use good old etmin.exe but an in-game option would be good for others who dont know Edited July 21, 2012 by Chuckun Quote Link to comment Share on other sites More sharing options...
Dookie Posted July 21, 2012 Author Share Posted July 21, 2012 Great suggestion! I already use good old etmin.exe but an in-game option would be good for others who dont know yep, using the same thing, but many new players dont kno about it, so yeah would b great! Quote Link to comment Share on other sites More sharing options...
Dookie Posted July 22, 2012 Author Share Posted July 22, 2012 anyone can confirm is this possible or not? Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted July 22, 2012 Management Share Posted July 22, 2012 We will look into it. Quote Link to comment Share on other sites More sharing options...
Dookie Posted July 22, 2012 Author Share Posted July 22, 2012 We will look into it. thx Quote Link to comment Share on other sites More sharing options...
Dragonji Posted September 9, 2012 Share Posted September 9, 2012 (edited) I'd suggest to have a look at ET: Legacy project instead. Its team fixed a lot of 2.60b bugs already and introduced new features (such as minimizing using Alt+TAB). Edited September 9, 2012 by Dragon Quote Link to comment Share on other sites More sharing options...
Dookie Posted September 12, 2012 Author Share Posted September 12, 2012 so gaoesa, is it gonna be somehow implented in new version? Quote Link to comment Share on other sites More sharing options...
Management TheSilencerPL Posted October 11, 2013 Management Share Posted October 11, 2013 Added in 0.8.0 for linux. It wasn't so easy though: I'd suggest to have a look at ET: Legacy project instead. Its team fixed a lot of 2.60b bugs already and introduced new features (such as minimizing using Alt+TAB). in ET:Legacy they are managing the window creation therefore they have handles for it and can easily manage it. It's a little bit harder from mod side, but it's possible.We might add the minimizer for windows in future version, depends on the number of people requesting such feature, so we encourage you to vote in this thread Quote Link to comment Share on other sites More sharing options...
Sol Posted October 11, 2013 Share Posted October 11, 2013 (edited) void Minimize() { HWND hwet = GetActiveWindow(); if (hwet) { WINDOWPLACEMENT wp; GetWindowPlacement(hwet, &wp); if (wp.showCmd == SW_SHOWMINIMIZED) ShowWindow(hwet, SW_RESTORE); else ShowWindow(hwet, SW_MINIMIZE); } } For Windowz, it works from DLL level tested it.But the resolution has to be same as system Edited October 11, 2013 by solaЯ Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted October 11, 2013 Management Share Posted October 11, 2013 It is unlikely that Windows minimizer would get implemented even if requested. The reasons are that it would require worker thread and system tray icon. If we would do it properly. Also, there are lot of external programs out there that have been used for years, so the investment of embedding it into the mod is mostly not worth it. @solThere is no lack of code samples. I have, in fact, made external program that handles minimizer and raw input. http://www.himalia.fi/forum/viewtopic.php?f=5&t=1178&sid=1d3b5b189944d7bb737114a18dc0b78e Quote Link to comment Share on other sites More sharing options...
Sol Posted October 11, 2013 Share Posted October 11, 2013 (edited) @solThere is no lack of code samples. I have, in fact, made external program that handles minimizer and raw input. http://www.himalia.fi/forum/viewtopic.php?f=5&t=1178&sid=1d3b5b189944d7bb737114a18dc0b78eYeah you're right. But as you've seen about your minimizer sometimes AVs gonna false positive because of dll injections & hooks ( I have really huge problems with it now ) thats why embedding it into entire mod is better idea imo. But this is just my opinionAnd yeah, coding & developing properly is not quite simple therefore I chose another way. Edited October 11, 2013 by solaЯ Quote Link to comment Share on other sites More sharing options...
Management gaoesa Posted October 11, 2013 Management Share Posted October 11, 2013 The minimizer part doesn't need to be injected and doesn't cause AV issues. The dll handling the raw input is injected to the launched ET process in my program, which probably caused that single time the AV flagged it. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.