Need recomendation for network lib

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
jpenguin
Posts: 10
Joined: Mon Feb 16, 2009 7:48 pm

Need recomendation for network lib

Post by jpenguin »

Hi, the game I am working on is going to move from PLIB to irrlicht in a couple versions. I want to code an in-game package manage that will (1) list files from an FTP or HTTP directory, let the user select one, and download the selected file.. Does anyone know of a library (C++, Cross-Platform) that would work with irrlicht for this purpose.

PS-- we already use enet for multiplayer



---jpenguin (OSX packager for STK)
Pyritie
Posts: 120
Joined: Fri Jan 16, 2009 12:59 pm
Contact:

Post by Pyritie »

Hive Workshop | deviantART

I've moved to Ogre.
sudi
Posts: 1686
Joined: Fri Aug 26, 2005 8:38 pm

Post by sudi »

no he wants a lib that supports standard http and ftp querrys and irrNet is not providing that at all.
We're programmers. Programmers are, in their hearts, architects, and the first thing they want to do when they get to a site is to bulldoze the place flat and build something grand. We're not excited by renovation:tinkering,improving,planting flower beds.
Pyritie
Posts: 120
Joined: Fri Jan 16, 2009 12:59 pm
Contact:

Post by Pyritie »

Oh, never mind then.

*goes back to his java.net streams*
Hive Workshop | deviantART

I've moved to Ogre.
Nox
Posts: 304
Joined: Wed Jan 14, 2009 6:23 pm

Post by Nox »

May be curl provide that you want.
BlindSide
Admin
Posts: 2821
Joined: Thu Dec 08, 2005 9:09 am
Location: NZ!

Post by BlindSide »

Yeah I would recommend cURL aswell.
ShadowMapping for Irrlicht!: Get it here
Need help? Come on the IRC!: #irrlicht on irc://irc.freenode.net
Brainsaw
Posts: 1183
Joined: Wed Jan 07, 2004 12:57 pm
Location: Bavaria

Post by Brainsaw »

I would also recommend libcurl. We use this one here in work as well.
Dustbin::Games on the web: https://www.dustbin-online.de/

Dustbin::Games on facebook: https://www.facebook.com/dustbingames/
Dustbin::Games on twitter: https://twitter.com/dustbingames
CuteAlien
Admin
Posts: 9734
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

boost::asio is rather low-level but it comes with examples for a simple http-server and http-client. It's far from offering the comfort of libCurl, but if you need to do some more network coding for your game and want to use the same library for that then it might be worth a look.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Post Reply