Search found 1010 matches

by Cube_
Mon Apr 03, 2017 1:54 pm
Forum: Open Discussion and Dev Announcements
Topic: Website hacked? :(
Replies: 12
Views: 2944

Re: Website hacked? :(

I can't find the shadow-root css linked anywhere in the document and a quick ctrl+f in the chrome developer view didn't find it either, but it's possible ublock or one of my user scripts stripped it if it's part of an ad or other known intrusive element. It's also possible that it's only included in...
by Cube_
Mon Apr 03, 2017 1:01 pm
Forum: Competition Time!
Topic: Screenshot of the Month, April 2017 [Submissions Closed]
Replies: 4
Views: 7904

Screenshot of the Month, April 2017 [Submissions Closed]

Welcome to screenshot of the month! Please submit your screenshots for April 2017 ! You can submit until the 30th . Voting will begin shortly thereafter. Rules -Only irrlicht renders allowed, -Give the image a good title and make clear what the title is, -Make sure the image is available until the ...
by Cube_
Mon Apr 03, 2017 11:56 am
Forum: Open Discussion and Dev Announcements
Topic: Website hacked? :(
Replies: 12
Views: 2944

Re: Website hacked? :(

generally any database errors is a server problem, showing half the web page is a resource problem (typically either on your end or on server end) such as the css failing to load or send.
by Cube_
Sun Apr 02, 2017 7:54 pm
Forum: Open Discussion and Dev Announcements
Topic: Emscripten port
Replies: 57
Views: 16747

Re: Emscripten port

emscripten itself is pretty smart, it can convert standard file loading to a more appropriate async method in js under certain conditions, I don't remember these off-hand but iirc it was pretty easy of a change for most programs.
by Cube_
Sun Apr 02, 2017 7:32 pm
Forum: Beginners Help
Topic: What is happening when an .irr scene file is loading?
Replies: 18
Views: 2182

Re: What is happening when an .irr scene file is loading?

you could do some hacky stuff to get approximate loading done, but without modifying the io routines to be async you can't do it properly - if you want to do it this way you'd typically create your window externally and hook the render context to draw irrlicht's output, this way you can draw your lo...
by Cube_
Sun Apr 02, 2017 7:29 pm
Forum: Open Discussion and Dev Announcements
Topic: Emscripten port
Replies: 57
Views: 16747

Re: Emscripten port

There are many ways to handle file loading, typically you'd want to use some type of streaming to local storage for browser resources, as for the banner: emscripten documentation tells you how to correctly get rid of this at compile time
by Cube_
Sun Apr 02, 2017 6:42 pm
Forum: Competition Time!
Topic: Screenshot of the Month, March 2017 [Voting Open!]
Replies: 12
Views: 5297

Re: Screenshot of the Month, March 2017 [Submissions Open!]

I'll probably close it later today since the black image is up, two images is a competition - even though the memory game clearly doesn't stand a chance against such a masterpiece.
by Cube_
Thu Mar 30, 2017 12:45 am
Forum: Competition Time!
Topic: Screenshot of the Month, March 2017 [Voting Open!]
Replies: 12
Views: 5297

Re: Screenshot of the Month, March 2017 [Submissions Open!]

heh, figured - animated gifs would be amusing but I suppose they're /technically/ many screenshots.
by Cube_
Wed Mar 29, 2017 10:54 pm
Forum: Competition Time!
Topic: Screenshot of the Month, March 2017 [Voting Open!]
Replies: 12
Views: 5297

Re: Screenshot of the Month, March 2017 [Submissions Open!]

neat, I'm not exactly going to drop my benchmark here since there's a proper entry - why? Simply because it's not exactly... a game. Also because I told myself I'm not entering until I have something entry-worthy. Out of curiosity, are gifs considered screenshots? Because that could be an interestin...
by Cube_
Wed Mar 29, 2017 6:45 pm
Forum: Competition Time!
Topic: Screenshot of the Month, March 2017 [Voting Open!]
Replies: 12
Views: 5297

Re: Screenshot of the Month, March 2017 [Submissions Open!]

I'm sorta tempted to just post a screenshot of an old 10M triangle benchmark because it's more interesting than a black screen, and even the black screen is down.
by Cube_
Mon Mar 27, 2017 7:13 am
Forum: Competition Time!
Topic: Screenshot of the Month, March 2017 [Voting Open!]
Replies: 12
Views: 5297

Re: Screenshot of the Month, March 2017 [Submissions Open!]

to be honest, seems like a killer game to me - maybe even game of the year 2017?
by Cube_
Tue Mar 07, 2017 6:34 pm
Forum: Beginners Help
Topic: What's the inner design [pattern] of Irrlicht?
Replies: 13
Views: 1655

Re: What's the inner design [pattern] of Irrlicht?

MSVC is usually the first to comply with standards but this varies heavily on the specific feature I slightly disagree, I have a C++11 library, that contains an hack just because MSVC does not comply with standard C++11. :D and fail compilation otherwise. I disagree, in my experience GCC has been i...
by Cube_
Mon Mar 06, 2017 3:58 pm
Forum: Competition Time!
Topic: Screenshot of the Month, March 2017 [Voting Open!]
Replies: 12
Views: 5297

Screenshot of the Month, March 2017 [Voting Open!]

Welcome to screenshot of the month!
Voting is now open for March 2017!
Voting closes around the end of the month.

kul-l - Blind Driver
Image

mikkis - My Old Memory Game
Image
by Cube_
Mon Mar 06, 2017 3:52 pm
Forum: Off-topic
Topic: Intel up to its tricks to destroy AMD Ryzen
Replies: 6
Views: 4063

Re: Intel up to its tricks to destroy AMD Ryzen

I'm not saying Ryzen is bad by any means, it compares reasonably favorably to the i7-6800K Issues I do have with it: Only two memory channels, I want my quad channel memory T_T 24 PCIe 3.0 lanes? What? Only 24 (16+4+4 configuration)? Conclusion: this is suitable for a mid to lower enthusiast single-...
by Cube_
Mon Mar 06, 2017 3:28 pm
Forum: Beginners Help
Topic: What's the inner design [pattern] of Irrlicht?
Replies: 13
Views: 1655

Re: What's the inner design [pattern] of Irrlicht?

... I was mostly bugged by the claim that MSVC is somehow the king of C++y features and standard loyalty when I knew from experience that's not the case. Which is not what I said, but however you wish to interpret it is fine I guess. And the other thing to note here is the frequency at which GCC ve...