Difference between revisions of "Lidgren.Network"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Created page with "One skill which could improve your overall project complexity is using networking and multiplayer features. I will therefore just provide the information to use and not give s...")
 
(Helpful Links)
Line 7: Line 7:
  
 
=Helpful Links=
 
=Helpful Links=
 +
https://github.com/JonDouglas/MonoGame-Tutorials/tree/master/BasicLidgrenServer
 +
 +
https://github.com/JonDouglas/MonoGame-Tutorials/tree/master/BasicLidgrenClient
 +
 +
https://code.google.com/archive/p/lidgren-network-gen3/
 +
 +
=Tutorials=
 +
==General==
 
http://genericgamedev.com/tutorials/lidgren-network-an-introduction-to-networking-in-csharp-games/
 
http://genericgamedev.com/tutorials/lidgren-network-an-introduction-to-networking-in-csharp-games/
  
 
http://genericgamedev.com/tutorials/lidgren-network-explaining-netdeliverymethod-and-sequence-channels/
 
http://genericgamedev.com/tutorials/lidgren-network-explaining-netdeliverymethod-and-sequence-channels/
  
https://code.google.com/archive/p/lidgren-network-gen3/
+
==Full Game==
 +
This tutorial series uses:
 +
https://code.google.com/archive/p/multiplayer-example/
 +
 
 +
Tutorial Series:
 +
 
 +
https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-1/
 +
 
 +
https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-2/
 +
 
 +
https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-3/
 +
 
 +
https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-4/
 +
 
 +
https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-5/
 +
 
 +
https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-6/
 +
 
 +
https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-7/
  
https://github.com/JonDouglas/MonoGame-Tutorials/tree/master/BasicLidgrenServer
+
https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-8/
  
https://github.com/JonDouglas/MonoGame-Tutorials/tree/master/BasicLidgrenClient
+
https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-9/

Revision as of 09:43, 25 July 2018

One skill which could improve your overall project complexity is using networking and multiplayer features. I will therefore just provide the information to use and not give specific examples and tutorials. Lidgren.Network is one method of introducing networking into your game.

Source Code

You can download the source code from this link: GitHub Code


Helpful Links

https://github.com/JonDouglas/MonoGame-Tutorials/tree/master/BasicLidgrenServer

https://github.com/JonDouglas/MonoGame-Tutorials/tree/master/BasicLidgrenClient

https://code.google.com/archive/p/lidgren-network-gen3/

Tutorials

General

http://genericgamedev.com/tutorials/lidgren-network-an-introduction-to-networking-in-csharp-games/

http://genericgamedev.com/tutorials/lidgren-network-explaining-netdeliverymethod-and-sequence-channels/

Full Game

This tutorial series uses: https://code.google.com/archive/p/multiplayer-example/

Tutorial Series:

https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-1/

https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-2/

https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-3/

https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-4/

https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-5/

https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-6/

https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-7/

https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-8/

https://dirkkok.wordpress.com/2012/02/20/lets-make-a-multiplayer-game-part-9/