Making a game engine, do you recommend .dll or .lib?

Post your questions, suggestions and experiences regarding game design, integration of external libraries here. For irrEdit, irrXML and irrKlang, see the
ambiera forums
Post Reply
Lil Margin
Posts: 212
Joined: Sun Jul 19, 2009 4:24 am
Location: Netherlands Antilles, Curacao

Making a game engine, do you recommend .dll or .lib?

Post by Lil Margin »

If your making a game engine what would you use? a static library or a dynamic library?

I am thinking of using a .dll for smaller file size and faster performance but then again a static library makes it easier to distribute...

So what are your guys though on this matter?
Lonesome Ducky
Competition winner
Posts: 1123
Joined: Sun Jun 10, 2007 11:14 pm

Post by Lonesome Ducky »

I'm all for dll personally. It wouldn't be much harder to distribute, as games mostly have more than their executable anyways, so if you can distribute the images etc., you can surely do the dll as well with few or no problems whatsoever.
Midnight
Posts: 1772
Joined: Fri Jul 02, 2004 2:37 pm
Location: Wonderland

Post by Midnight »

I intend to change the source a bit to suit my needs and have no reason to expose the core systems, I will probably go with static.

the purpose of a dll is to share the library, for example you might have a seperate editor that uses the engine. dll's were probably originally intended to be at an operating systems core and shared by many applications to reduce resources like file sizes. In the future present we all know that projects are far too branched to make this possible in many cases. even games like those that used the quake3 engine which were plentiful did not share each others engine libraries and were self contained.

however dll's have a unique ability compared to static, lets say you had two quake 3 games and both had their own indentical dll and one of those had become corrupted. you could then easily copy the others dll to fix it rather then reinstalling the entire application for that one file.

again though it's the future and even when engines are shared they are usually modified, and it's not really a huge factor when deciding which way to compile but more of a handy inherent feature.

dlls are also very handy when hacking an application, now that might seem like a bad thing in most cases but some of the greatest modifications to games in the past have been hacked in this way.

I'm sure there are much better arguments to this subject but I'm no expert on it. anyway hope that gives you a little insight, happy coding. 8)
johnsmith
Posts: 1
Joined: Wed Oct 20, 2010 9:25 am

Post by johnsmith »

For making a game engine, I would like to use a dynamic library because It will be helpful to add more games on it. I think that you should use .dll files for smaller sizes of files which are very helpful to increase the speed of the game engine.
Luben
Posts: 568
Joined: Sun Oct 09, 2005 10:12 am
Location: #irrlicht @freenode

Post by Luben »

Bate
Posts: 364
Joined: Sun Nov 01, 2009 11:39 pm
Location: Germany

Re: Making a game engine, do you recommend .dll or .lib?

Post by Bate »

Lil Margin wrote:I am thinking of using a .dll for smaller file size and faster performance
Static librarys are always faster! Often, depending on the situation though, the performance gain is negligible. In some cases, however, it could make a real difference.

Performance testing shared vs. static libs
Never take advice from someone who likes to give advice, so take my advice and don't take it.
Post Reply