*** FastLizard4 is back | 00:30 | |
*** FastLizard4 is now away: AWAY from keyboard | 00:38 | |
*** FastLizard4 is back | 00:41 | |
Juest | strange Zehra, maybe its some kind of memory corruption? | 00:43 |
---|---|---|
Zehra | Juest: I think it probably was or something similar, I just know that as long as I don't let them run too quick/long, it has never happened | 00:44 |
Juest | Zehra: im realizing that you're likely using the bash/shell implementation of the operands, so its possible that there are hitches that corrupt the output | 00:46 |
Juest | its not really intended for tasks running very long | 00:46 |
Zehra | you're right, I'm using bash/shell and simply a shell script to start it or rather use it as a shortcut | 00:47 |
Zehra | there's still a lot I don't quite know of and I haven't really found a good way/work-around for it | 00:48 |
Juest | make yourself a logger hack in the client, it'll be a much better implementation than the shell | 00:48 |
Juest | but you'll have to work a lot to cover all sorts of edge cases | 00:49 |
Zehra | ^I'll check in and do that, it's been a while since I've last done some client modding, but I've done a small bit of it years ago | 00:49 |
Zehra | some ideas I've had might work better | 00:50 |
* Zehra still hasn't created the ideal set-up yet | 00:50 | |
Juest | have fun and you might be able to pr the logging feature for us :) | 00:50 |
Juest | its a utilitarian addition :) | 00:51 |
Zehra | I'll drop it in the forums, the same with most of my other utilities :) | 00:51 |
blast007 | Zehra: regarding your log redirection, do you ever run two clients at once? If so, that could be why you have issues with that log file, since both would use the same file. | 00:52 |
*** FastLizard4 is now away: AWAY from keyboard | 01:03 | |
Zehra | blast007: I did run it at one point, I'm not sure if I ran it with the logging on both of them, but I don't think so | 01:07 |
Zehra | I usually have 2-5 bash shells open when I run bz though. (1 for bz, 2 for list, (3 for server), (4 for plugin), (5 for map generation.) | 01:11 |
Juest | lol | 01:18 |
*** Sgeo_ <Sgeo_!~Sgeo@user/sgeo> has joined #bzflag | 02:59 | |
*** Sgeo <Sgeo!~Sgeo@user/sgeo> has quit IRC (Ping timeout: 256 seconds) | 03:02 | |
*** Zehra <Zehra!~Yukari@user/yukari> has quit IRC (Quit: Leaving) | 04:05 | |
*** I_Died_Once <I_Died_Once!~I_Died_On@c-73-184-170-223.hsd1.ga.comcast.net> has quit IRC (Ping timeout: 252 seconds) | 04:28 | |
*** Sgeo_ <Sgeo_!~Sgeo@user/sgeo> has quit IRC (Read error: Connection reset by peer) | 05:30 | |
Agatha | That's how you know it's Linux, that you have 5 bash shells simultaneously just so you can run an open-source game. | 05:52 |
*** yuitimothy is now away: I've done some soul-searching and I still can't find it. | 10:54 | |
*** yuitimothy is back | 10:54 | |
*** yuitimothy is now away: I've done some soul-searching and I still can't find it. | 11:01 | |
*** yuitimothy is back | 11:01 | |
*** yuitimothy is now away: I've done some soul-searching and I still can't find it. | 11:08 | |
*** yuitimothy is back | 11:08 | |
*** I_Died_Once <I_Died_Once!~I_Died_On@c-73-184-170-223.hsd1.ga.comcast.net> has joined #bzflag | 11:30 | |
*** _I_Died_Once <_I_Died_Once!~I_Died_On@c-73-184-170-223.hsd1.ga.comcast.net> has joined #bzflag | 11:32 | |
*** I_Died_Once <I_Died_Once!~I_Died_On@c-73-184-170-223.hsd1.ga.comcast.net> has quit IRC (Ping timeout: 255 seconds) | 11:35 | |
*** yuitimothy is now away: I've done some soul-searching and I still can't find it. | 11:53 | |
*** yuitimothy is back | 11:53 | |
*** yuitimothy is now away: I've done some soul-searching and I still can't find it. | 12:09 | |
*** Sgeo <Sgeo!~Sgeo@user/sgeo> has joined #bzflag | 14:57 | |
*** Sgeo <Sgeo!~Sgeo@user/sgeo> has quit IRC (Read error: Connection reset by peer) | 15:03 | |
*** Sgeo <Sgeo!~Sgeo@user/sgeo> has joined #bzflag | 15:21 | |
*** FastLizard4 is back | 17:02 | |
*** FastLizard4 is now away: AWAY from keyboard | 17:21 | |
*** FastLizard4 is back | 17:39 | |
*** FastLizard4 is now away: AWAY from keyboard | 17:55 | |
BZNotify | 2.4 @ bzflag: atupone pushed 1 commit (https://github.com/BZFlag-Dev/bzflag/compare/f24148601e2d...471584154e3d): | 18:23 |
BZNotify | 2.4 @ bzflag: atupone 471584: src/3D/ImageFont.h: Fix the signature of virtual. (https://github.com/BZFlag-Dev/bzflag/commit/471584154e3d5395d6e6276af517364a181995b4) | 18:23 |
*** FastLizard4 is now away: GONE - Screen Detached and Disconnected from IRC (I'm probably asleep, at work, or doing something in real life) | 18:34 | |
Agatha | `using GLColor = glm::vec4f;` or `using GLColor = std::array<float,4>;`. At the very least surely `GLfloat color[]` -> `GLfloat const color[]`? | 21:00 |
Juest | Agatha: it could be mac as well :) | 21:12 |
Agatha | I respect Zehra too much to consider that a possibility | 21:17 |
tupone | I did not wat to change a lot. Just the virtual one was GLfloat[3] and the true one is GLfloat[4]. and the last is good as it call glColor4f. The compiler make no distinction, though | 21:17 |
SpringTank | haha, imagine using a mac to do dev work | 21:23 |
Agatha | It's true changing 3 -> 4 to match the function signature is a good change. Three bits toggled in commit! | 21:24 |
Agatha | Array of length 3 in the parameter that child functions can dereference 4 values out of, nasty. | 21:26 |
Juest | SpringTank: some people actually do that | 21:27 |
Juest | successfully even | 21:27 |
BZNotify | bzflag-bzfls3: dependabot[bot] created branch dependabot/composer/dev-dependencies-1fd4733ae0 (https://github.com/BZFlag-Dev/bzflag-bzfls3/commit/d8fbb8f836f5): | 21:28 |
BZNotify | dependabot/composer/dev-dependencies-1fd4733ae0 @ bzflag-bzfls3: dependabot[bot] d8fbb8: Bump zircote/swagger-php in the dev-dependencies group (https://github.com/BZFlag-Dev/bzflag-bzfls3/commit/d8fbb8f836f5c6f4734fe3851816359c7d8035d4) | 21:28 |
BZNotify | bzflag-bzfls3: dependabot[bot] labeled pull request #12 "Bump zircote/swagger-php from 4.10.0 to 4.10.3 in the dev-dependencies group" as dependencies (https://github.com/BZFlag-Dev/bzflag-bzfls3/pull/12) | 21:28 |
BZNotify | bzflag-bzfls3: dependabot[bot] opened pull request #12 | 21:28 |
BZNotify | bzflag-bzfls3: dependabot[bot] assigned pull request #12 to blast007 | 21:28 |
SpringTank | It's a joke, Juest | 21:28 |
* Juest shrugs | 21:28 | |
Juest | i clearly suck at telling that apart | 21:28 |
SpringTank | don't take it so hard | 21:30 |
SpringTank | I live off banter. | 21:30 |
*** disco <disco!~disco@81.187.95.100> has quit IRC (Quit: Lost terminal) | 22:29 | |
*** disco <disco!~disco@81.187.95.100> has joined #bzflag | 22:36 | |
*** yuitimothy is back | 23:59 |
Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!