-
A. Burn & D. Carr, “Defining Games Genres” i Computer Games. Text. Narrative and Play, s. 14-29 och,
-
D. Carr, D. Campbell & K. Ellwood, "Film, Adaption and Computer Games" i Computer Games. Text. Narrative and Play, s. 149-161
-
G. King & T. Krzywinska, “Film studies and digital games” i Understanding Digital Games, s. 111-128
-
Caillois, R (1958, 2001) Man, Play and Games. Urbana & Chicago: University of Illinois Press, särskilt focus: s. 3 – 128
-
Juul, J "The Game, the Player, the World: Looking for a Heart of Gameness". In Level Up: Digital Games Research Conference Proceedings, edited by Marinka Copier and Joost Raessens, 30-45. Utrecht: Utrecht University, 2003. The Game, the Player, the World: Looking for a Heart of Gameness
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rules | |
| In order to get a clear and unified ruleset out, a ruleset has been made with admins and leaders together. These will be the following from 19/11/16 and onward: | |
| General Rules: | |
| Don’t post personal information (IP addresses, addresses, phone numbers) | |
| Dont spam. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Image: https://thumb1.shutterstock.com/display_pic_with_logo/3673592/464300804/stock-photo-surprised-kid-sitting-at-table-child-s-eyes-widened-and-mouth-opened-in-amazement-copy-space-for-464300804.jpg | |
| ID: 32426 | |
| Name: Euczvpe | |
| Country: Czechia | |
| Birthday: 11 February | |
| Allergies: Tartrazine, Dilantin | |
| Blood Type: B | |
| Medication: Yes | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import time | |
| import random | |
| import shutil | |
| import string | |
| import datetime | |
| import requests | |
| import pycountry | |
| from lxml import html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. SITUATION | |
| THE SITUATION IS GRAVE, CAPTAIN. | |
| EARLY THIS MORNING, THE WARSAW PACT LAUNCHED A FULL SCALE ASSAULT ON THE TERRITORIAL INTEGRITY OF WEST GERMANY. SO FAR, WE BELIEVE WE ARE FACING 3RD SHOCK ARMY BUT WE CANNOT BE SURE AS THE INITIAL AMERICAN FORCE SENT TO STOP THEM HAS BEEN DESTROYED PIECEMEAL. | |
| YOUR MISSION IS TO MOVE YOUR COMPANY INTO POSITION ON THE MINDEN-LÜBBECKE HIGHWAY AND PREVENT THE RUSSIANS FROM COMING ANY FURTHER WEST. WE ARE ATTEMPTING TO ORGANISE MORE FORCES FROM 2 INF DIV TO ASSIST YOU, BUT THEY ARE GOING TO TAKE SOME TIME TO ARRIVE SO YOU MUST HOLD YOUR GROUND AT ALL COSTS. | |
| I CANNOT OVERSTATE HOW IMPORTANT IT IS FOR YOU TO HOLD FOR AS LONG AS YOU CAN.GOOD LUCK. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <cstdlib> | |
| #include <iostream> | |
| class Generator { | |
| public: | |
| virtual ~Generator() {} | |
| virtual int getValue() = 0; | |
| }; | |
| class IntervalGenerator : public Generator { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <fstream> | |
| using namespace std; | |
| int main() { | |
| ifstream input1("input1.txt"); // in fstream, läser ett textdokument | |
| ifstream input2("input2.txt"); | |
| ofstream output("output.txt"); // out fstream, skapar och öppnar ett textdokument | |
| while (!(input1.eof() || input2.eof())) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Prekompilering: | |
| Fixar "#" | |
| Tar bort kommentarer | |
| Löser ut makron | |
| Makron har vi inte gått igenom | |
| Copy-pastar include-filer | |
| Kompilering: | |
| Sourcefil (.cpp) blir objektfil (.obj) | |
| Görs om till maskinkod |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /Users/mac/Documents/C++/task-force-arma-3-radio/ts/src/./settings.hpp:148:10: error: explicit specialization of 'set' in class scope | |
| void set(Setting key, const std::string& value) { | |
| ^ | |
| /Users/mac/Documents/C++/task-force-arma-3-radio/ts/src/./settings.hpp:198:9: error: chosen constructor is explicit in copy-initialization | |
| Settings(EnumDefault) | |
| ^~~~~~~~~~~~~~~~~~~~~ | |
| /Users/mac/Documents/C++/task-force-arma-3-radio/ts/src/./settings.hpp:26:50: note: expanded from macro 'Settings' | |
| XX(tangentReleaseDelay, static_cast<float>(0.f)) | |
| ^ | |
| /Users/mac/Documents/C++/task-force-arma-3-radio/ts/src/./settings.hpp:30:26: note: expanded from macro 'EnumDefault' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <cstdio> | |
| #include <stdexcept> | |
| #include <sys/types.h> | |
| #include <sys/sysctl.h> | |
| #include <CoreFoundation/CoreFoundation.h> | |
| #include <signal.h> | |
| #include <stdarg.h> |
OlderNewer