-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreferences.bib
More file actions
4084 lines (3919 loc) · 164 KB
/
Copy pathreferences.bib
File metadata and controls
4084 lines (3919 loc) · 164 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@book{williams2005,
title = {The Social Outcast : Ostracism, Social Exclusion, Rejection, and Bullying},
author = {{Williams}, {Kipling D.} and {Forgas}, {Joseph P.} and {Hippel}, {William Von} and {Forgas}, {Joseph P.} and {Hippel}, {William Von}},
year = {2005},
date = {2005},
publisher = {Psychology Press},
doi = {10.4324/9780203942888},
url = {https://www.taylorfrancis.com/books/9781135423384},
note = {DOI: 10.4324/9780203942888},
langid = {en}
}
@article{vanlooy2012,
title = {Player Identification in Online Games: Validation of a Scale for Measuring Identification in MMOGs},
author = {{Van Looy}, {Jan} and {Courtois}, {Cédric} and {Vocht}, {Melanie De} and {Marez}, {Lieven De}},
year = {2012},
month = {05},
date = {2012-05-18},
journal = {Media Psychology},
pages = {197--221},
volume = {15},
number = {2},
doi = {10.1080/15213269.2012.674917},
url = {https://doi.org/10.1080/15213269.2012.674917},
note = {Publisher: Routledge
{\_}eprint: https://doi.org/10.1080/15213269.2012.674917}
}
@article{schramm2008,
title = {The PSI-Process Scales. A new measure to assess the intensity and breadth of parasocial processes},
author = {{Schramm}, {Holger} and {Hartmann}, {Tilo}},
year = {2008},
month = {01},
date = {2008-01},
journal = {Communications},
volume = {33},
number = {4},
doi = {10.1515/COMM.2008.025},
url = {https://www.degruyter.com/view/j/comm.2008.33.issue-4/comm.2008.025/comm.2008.025.xml},
note = {tex.ids: schramm2008a},
langid = {en}
}
@article{anderson2010,
title = {Violent video game effects on aggression, empathy, and prosocial behavior in Eastern and Western countries: A meta-analytic review},
author = {{Anderson}, {Craig A.} and {Shibuya}, {Akiko} and {Ihori}, {Nobuko} and {Swing}, {Edward L.} and {Bushman}, {Brad J.} and {Sakamoto}, {Akira} and {Rothstein}, {Hannah R.} and {Saleem}, {Muniba}},
year = {2010},
month = {03},
date = {2010-03},
journal = {Psychological Bulletin},
pages = {151--173},
volume = {136},
number = {2},
doi = {10.1037/a0018251},
url = {http://search.ebscohost.com/login.aspx?direct=true&db=psyh&AN=2010-03383-001&site=ehost-live}
}
@article{hilgard2017,
title = {Overstated evidence for short-term effects of violent games on affect and behavior: A reanalysis of Anderson et al. (2010)},
author = {{Hilgard}, {Joseph} and {Engelhardt}, {Christopher R.} and {Rouder}, {Jeffrey N.}},
year = {2017},
date = {2017},
journal = {Psychological Bulletin},
pages = {757--774},
volume = {143},
number = {7},
doi = {10.1037/bul0000074},
note = {Place: US
Publisher: American Psychological Association}
}
@article{wesselmann2013,
title = {When do we ostracize?},
author = {{Wesselmann}, {Eric D.} and {Wirth}, {James H.} and {Pryor}, {John B.} and {Reeder}, {Glenn D.} and {Williams}, {Kipling D.}},
year = {2013},
month = {01},
date = {2013-01},
journal = {Social Psychological and Personality Science},
pages = {108--115},
volume = {4},
number = {1},
doi = {10.1177/1948550612443386}
}
@article{hales2016,
title = {Prayer, self-affirmation, and distraction improve recovery from short-term ostracism},
author = {{Hales}, {Andrew H.} and {Wesselmann}, {Eric D.} and {Williams}, {Kipling D.}},
year = {2016},
month = {05},
date = {2016-05-01},
journal = {Journal of Experimental Social Psychology},
pages = {8--20},
volume = {64},
doi = {10.1016/j.jesp.2016.01.002},
url = {http://www.sciencedirect.com/science/article/pii/S0022103116300026},
note = {tex.ids: hales2016a}
}
@misc{nadzan2019,
title = {Threats to Belonging: Understanding the impact of relational closeness},
author = {{Nadzan}, {Megan A.} and {Jaremka}, {Lisa M.} and {Sunami}, {Naoyuki}},
year = {2019},
month = {04},
date = {2019-04},
address = {Chicago, IL}
}
@article{troisi2011,
title = {Chicken soup really is good for the soul: {\textquotedblleft}comfort food{\textquotedblright} fulfills the need to belong},
author = {{Troisi}, {Jordan D.} and {Gabriel}, {Shira}},
year = {2011},
month = {06},
date = {2011-06},
journal = {Psychological Science},
pages = {747--753},
volume = {22},
number = {6},
doi = {10.1177/0956797611407931}
}
@article{troisi2015,
title = {Threatened belonging and preference for comfort food among the securely attached},
author = {{Troisi}, {Jordan D.} and {Gabriel}, {Shira} and {Derrick}, {Jaye L.} and {Geisler}, {Alyssa}},
year = {2015},
month = {07},
date = {2015-07-01},
journal = {Appetite},
pages = {58--64},
volume = {90},
doi = {10.1016/j.appet.2015.02.029},
note = {PMID: 25728881},
langid = {eng}
}
@incollection{williams2009,
location = {San Diego, {CA} {US}},
title = {Ostracism: A temporal need-threat model},
isbn = {978-0-12-374472-2},
series = {Advances in experimental social psychology},
shorttitle = {Ostracism},
pages = {275--314},
booktitle = {Advances in experimental social psychology, Vol 41.},
publisher = {Elsevier Academic Press},
author = {Williams, Kipling D.},
editor = {Zanna, Marc P.},
date = {2009},
note = {tex.ids: williams2009a},
file = {Williams - 2009 - Ostracism A temporal need-threat model.pdf:C\:\\Users\\Nami Sunami\\Zotero\\storage\\4EFBMRXQ\\Williams - 2009 - Ostracism A temporal need-threat model.pdf:application/pdf},
}
@article{koo2016,
title = {A Guideline of Selecting and Reporting Intraclass Correlation Coefficients for Reliability Research},
author = {{Koo}, {Terry K.} and {Li}, {Mae Y.}},
year = {2016},
month = {06},
date = {2016-06},
journal = {Journal of Chiropractic Medicine},
pages = {155--163},
volume = {15},
number = {2},
doi = {10.1016/j.jcm.2016.02.012},
url = {https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4913118/},
note = {tex.ids: koo2016a
PMCID: PMC4913118
PMID: 27330520}
}
@article{wesselmann2012,
title = {Dial a feeling: Detecting moderation of affect decline during ostracism},
author = {{Wesselmann}, {Eric D.} and {Wirth}, {James H.} and {Mroczek}, {Daniel K.} and {Williams}, {Kipling D.}},
year = {2012},
month = {10},
date = {2012-10},
journal = {Personality and Individual Differences},
pages = {580--586},
volume = {53},
number = {5},
doi = {10.1016/j.paid.2012.04.039}
}
@article{baumeister1995,
title = {The need to belong: Desire for interpersonal attachments as a fundamental human motivation},
author = {{Baumeister}, {Roy F.} and {Leary}, {Mark R.}},
year = {1995},
month = {05},
date = {1995-05},
journal = {Psychological Bulletin},
pages = {497--529},
volume = {117},
number = {3},
doi = {10.1037/0033-2909.117.3.497},
url = {http://search.ebscohost.com/login.aspx?direct=true&db=psyh&AN=1995-29052-001&site=ehost-live},
note = {tex.ids: baumeister1995a}
}
@article{maslow1943,
title = {A theory of human motivation},
author = {{Maslow}, {A.}},
year = {1943},
date = {1943},
journal = {Psychological Review},
pages = {370--396},
volume = {50},
number = {4},
doi = {10.1037/h0054346},
note = {tex.ids: maslow1943a},
langid = {English}
}
@article{bradley1994,
title = {Measuring emotion: the Self-Assessment Manikin and the Semantic Differential},
author = {{Bradley}, {M. M.} and {Lang}, {Peter J.}},
year = {1994},
month = {03},
date = {1994-03},
journal = {Journal of Behavior Therapy and Experimental Psychiatry},
pages = {49--59},
volume = {25},
number = {1},
note = {tex.ids: bradley1994a
PMID: 7962581},
langid = {eng}
}
@article{russell1996,
title = {UCLA Loneliness Scale (Version 3): Reliability, validity, and factor structure},
author = {{Russell}, {Daniel W.}},
year = {1996},
month = {02},
date = {1996-02},
journal = {Journal of Personality Assessment},
pages = {20--40},
volume = {66},
number = {1},
doi = {10.1207/s15327752jpa6601_2},
url = {http://search.ebscohost.com/login.aspx?direct=true&db=psyh&AN=1996-00412-002&site=ehost-live},
note = {tex.ids: russell1996a}
}
@article{sunami2019,
title = {Does the prospect of fulfilling belonging affect social responses to rejection? A conceptual replication attempt},
author = {{Sunami}, {Naoyuki} and {Nadzan}, {Megan A.} and {Jaremka}, {Lisa M.}},
year = {2019},
month = {04},
date = {2019-04},
journal = {Social Psychological and Personality Science},
pages = {307--316},
volume = {10},
number = {3},
doi = {10.1177/1948550618762301},
url = {http://journals.sagepub.com/doi/10.1177/1948550618762301},
note = {tex.ids: sunami2019a},
langid = {en}
}
@article{twenge2003,
title = {{\textquotedblleft}Isn{\textquoteright}t it fun to get the respect that we{\textquoteright}re going to deserve?{\textquotedblright} narcissism, social rejection, and aggression},
author = {{Twenge}, {Jean M.} and {Campbell}, {W. Keith}},
year = {2003},
month = {02},
date = {2003-02-01},
journal = {Personality and Social Psychology Bulletin},
pages = {261--272},
volume = {29},
number = {2},
doi = {10.1177/0146167202239051},
url = {http://psp.sagepub.com/content/29/2/261},
note = {tex.ids: twenge2003a
PMID: 15272953},
langid = {en}
}
@article{bradley1994a,
title = {Measuring emotion: the Self-Assessment Manikin and the Semantic Differential},
author = {{Bradley}, {M. M.} and {Lang}, {Peter J.}},
year = {1994},
month = {03},
date = {1994-03},
journal = {Journal of Behavior Therapy and Experimental Psychiatry},
pages = {49--59},
volume = {25},
number = {1},
note = {tex.ids: bradley1994a
PMID: 7962581},
langid = {eng}
}
@inbook{lang1980,
title = {Behavioral treatment and bio-behavioral assessment: computer applications},
author = {{Lang}, {Peter J.}},
editor = {{Sidowski}, {JB} and {Johnson}, {JH} and {Williams}, {TA}},
year = {1980},
date = {1980},
publisher = {Ablex},
pages = {119--l37},
note = {tex.ids: lang1980a}
}
@article{boateng2018,
title = {Best Practices for Developing and Validating Scales for Health, Social, and Behavioral Research: A Primer},
author = {{Boateng}, {Godfred O.} and {Neilands}, {Torsten B.} and {Frongillo}, {Edward A.} and {Melgar-Quiñonez}, {Hugo R.} and {Young}, {Sera L.}},
year = {2018},
month = {06},
date = {2018-06-11},
journal = {Frontiers in Public Health},
volume = {6},
doi = {10.3389/fpubh.2018.00149},
url = {https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6004510/},
note = {tex.ids: boateng2018a
PMCID: PMC6004510
PMID: 29942800}
}
@article{sunami2019a,
title = {The bi{-}dimensional rejection taxonomy: Organizing responses to interpersonal rejection along antisocial{\textendash}prosocial and engaged{\textendash}disengaged dimensions},
author = {{Sunami}, {Naoyuki} and {Nadzan}, {Megan A.} and {Jaremka}, {Lisa M.}},
year = {2019},
month = {09},
date = {2019-09},
journal = {Social and Personality Psychology Compass},
volume = {13},
number = {9},
doi = {10.1111/spc3.12497},
url = {https://onlinelibrary.wiley.com/doi/abs/10.1111/spc3.12497},
note = {tex.ids: sunami2019b},
langid = {en}
}
@inproceedings{bopp2019,
title = {CHI PLAY '19: The Annual Symposium on Computer-Human Interaction in Play},
author = {{Bopp}, {Julia Ayumi} and {Müller}, {Livia J.} and {Aeschbach}, {Lena Fanya} and {Opwis}, {Klaus} and {Mekler}, {Elisa D.}},
year = {2019},
month = {10},
date = {2019-10-17},
publisher = {ACM},
pages = {313--324},
doi = {10.1145/3311350.3347169},
url = {https://dl.acm.org/doi/10.1145/3311350.3347169},
note = {tex.ids: bopp2019a},
address = {Barcelona Spain},
langid = {en}
}
@article{burgess2020a,
title = {I harbour strong feelings for tali despite her being a fictional character{\textquotedblright}: Investigating videogame players{\textquoteright} emotional attachments to non-player characters},
author = {{Burgess}, {J.} and {Jones}, {C.}},
year = {2020},
date = {2020},
journal = {Game Studies},
volume = {20},
number = {1},
url = {http://gamestudies.org/2001/articles/burgessjones},
note = {Citation Key: burgess2020a},
langid = {English}
}
@inproceedings{poretski2019,
title = {the 2019 CHI Conference},
author = {{Poretski}, {Lev} and {Arazy}, {Ofer} and {Lanir}, {Joel} and {Shahar}, {Shalev} and {Nov}, {Oded}},
year = {2019},
date = {2019},
publisher = {ACM Press},
pages = {1--13},
doi = {10.1145/3290605.3300921},
url = {http://dl.acm.org/citation.cfm?doid=3290605.3300921},
note = {tex.ids: poretski2019a},
address = {Glasgow, Scotland Uk},
langid = {en}
}
@inproceedings{tyack2017,
title = {Exploring relatedness in single-player video game play},
author = {{Tyack}, {April} and {Wyeth}, {Peta}},
year = {2017},
month = {11},
date = {2017-11-28},
publisher = {Association for Computing Machinery},
pages = {422{\textendash}427},
series = {OZCHI '17},
doi = {10.1145/3152771.3156149},
url = {https://doi.org/10.1145/3152771.3156149},
note = {tex.ids: tyack2017a},
address = {Brisbane, Queensland, Australia}
}
@article{simons2017,
title = {Constraints on Generality (COG): A Proposed Addition to All Empirical Papers},
author = {{Simons}, {Daniel J.} and {Shoda}, {Yuichi} and {Lindsay}, {D. Stephen}},
year = {2017},
month = {11},
date = {2017-11-01},
journal = {Perspectives on Psychological Science},
pages = {1123--1128},
volume = {12},
number = {6},
doi = {10.1177/1745691617708630},
url = {https://doi.org/10.1177/1745691617708630},
note = {tex.ids: simons2017a}
}
@inbook{gabriel2017,
location = {New York, {NY}},
title = {Social Surrogates and Rejection: How Reading, Watching {TV}, and Eating Comfort Food Can Ease the Pain of Social Isolation},
isbn = {978-1-315-30846-3},
booktitle = {Ostracism, Exclusion, and Rejection},
publisher = {Routledge},
author = {Gabriel, Shira and Valenti, Jennifer},
bookauthor = {Williams, Kipling D. and Nida, Steve A.},
date = {2017},
note = {tex.ids: gabriel2017a},
file = {Gabriel and Valenti - 2017 - Social Surrogates and Rejection How Reading, Watc.pdf:C\:\\Users\\Nami Sunami\\Zotero\\storage\\855UHNTH\\Gabriel and Valenti - 2017 - Social Surrogates and Rejection How Reading, Watc.pdf:application/pdf},
}
@article{nintendo2020a,
title = {Animal crossing: New horizons},
author = {{Nintendo}, {E.P.D.}},
year = {2020},
date = {2020},
note = {Citation Key: nintendo2020a},
langid = {English}
}
@article{nintendo2012a,
title = {Animal crossing: New leaf},
author = {{Nintendo}, {E.A.D.}},
year = {2012},
date = {2012},
note = {Citation Key: nintendo2012a},
langid = {English}
}
@book{cdprojektred2015,
title = {The Witcher 3: Wild Hunt},
author = {{CD Projekt Red}, {}},
year = {2015},
date = {2015}
}
@book{cdprojektred2007,
title = {The Witcher},
author = {{CD Projekt Red}, {}},
year = {2007},
date = {2007}
}
@article{cacioppo2006,
title = {Loneliness as a specific risk factor for depressive symptoms: Cross-sectional and longitudinal analyses},
author = {{Cacioppo}, {John T.} and {Hughes}, {Mary Elizabeth} and {Waite}, {Linda J.} and {Hawkley}, {Louise C.} and {Thisted}, {Ronald A.}},
year = {2006},
month = {03},
date = {2006-03},
journal = {Psychology and Aging},
pages = {140--151},
volume = {21},
number = {1},
doi = {10.1037/0882-7974.21.1.140},
url = {http://search.ebscohost.com/login.aspx?direct=true&db=psyh&AN=2006-03906-014&site=ehost-live},
note = {tex.ids: cacioppo2006a}
}
@article{hawkley2010,
title = {Loneliness predicts increased blood pressure: 5-year cross-lagged analyses in middle-aged and older adults},
author = {{Hawkley}, {Louise C.} and {Thisted}, {Ronald A.} and {Masi}, {Christopher M.} and {Cacioppo}, {John T.}},
year = {2010},
date = {2010},
journal = {Psychology and Aging},
pages = {132--141},
volume = {25},
number = {1},
doi = {10.1037/a0017805},
langid = {English}
}
@article{jaremka2013,
title = {Loneliness predicts pain, depression, and fatigue: Understanding the role of immune dysregulation},
author = {{Jaremka}, {Lisa M.} and {Fagundes}, {Christopher P.} and {Glaser}, {Ronald} and {Bennett}, {Jeanette M.} and {Malarkey}, {William B.} and {Kiecolt-Glaser}, {Janice K.}},
year = {2013},
month = {08},
date = {2013-08},
journal = {Psychoneuroendocrinology},
pages = {1310--1317},
volume = {38},
number = {8},
doi = {10.1016/j.psyneuen.2012.11.016},
url = {http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3633610/},
note = {tex.ids: jaremka2013a
PMCID: PMC3633610
PMID: 23273678}
}
@article{nezlek2012,
title = {Ostracism in Everyday Life},
author = {{Nezlek}, {John B.} and {Wesselmann}, {Eric D.} and {Wheeler}, {Ladd} and {Williams}, {Kipling D.}},
year = {2012},
month = {05},
date = {2012-05},
journal = {Group Dynamics: Theory, Research, and Practice},
doi = {10.1037/a0028029},
url = {http://search.ebscohost.com/login.aspx?direct=true&db=psyh&AN=2012-12087-001&site=ehost-live},
note = {tex.ids: nezlek2012a}
}
@article{chory2013,
title = {Differences in Television Viewers{\textquoteright} Involvement: Identification with and Attraction to Liked, Disliked, and Neutral Characters},
author = {{Chory}, {Rebecca M.}},
year = {2013},
month = {10},
date = {2013-10-01},
journal = {Communication Research Reports},
pages = {293--305},
volume = {30},
number = {4},
doi = {10.1080/08824096.2013.837041},
url = {https://doi.org/10.1080/08824096.2013.837041},
note = {{\_}eprint: https://doi.org/10.1080/08824096.2013.837041
tex.ids: chory2013a
publisher: Routledge}
}
@article{jennings2016,
title = {Young Children{\textquoteright}s Positive and Negative Parasocial Relationships with Media Characters},
author = {{Jennings}, {Nancy} and {Alper}, {Meryl}},
year = {2016},
month = {04},
date = {2016-04-02},
journal = {Communication Research Reports},
pages = {96--102},
volume = {33},
number = {2},
doi = {10.1080/08824096.2016.1154833},
url = {https://doi.org/10.1080/08824096.2016.1154833},
note = {{\_}eprint: https://doi.org/10.1080/08824096.2016.1154833
tex.ids: jennings2016a
publisher: Routledge}
}
@inproceedings{bopp2019a,
title = {CHI PLAY '19: The Annual Symposium on Computer-Human Interaction in Play},
author = {{Bopp}, {Julia Ayumi} and {Müller}, {Livia J.} and {Aeschbach}, {Lena Fanya} and {Opwis}, {Klaus} and {Mekler}, {Elisa D.}},
year = {2019},
month = {10},
date = {2019-10-17},
publisher = {ACM},
pages = {313--324},
doi = {10.1145/3311350.3347169},
url = {https://dl.acm.org/doi/10.1145/3311350.3347169},
note = {tex.ids: bopp2019a},
address = {Barcelona Spain},
langid = {en}
}
@article{banks2015,
title = {Object, Me, Symbiote, Other: A social typology of player-avatar relationships},
author = {{Banks}, {Jaime}},
year = {2015},
month = {02},
date = {2015-02-04},
journal = {First Monday},
doi = {10.5210/fm.v20i2.5433},
url = {https://firstmonday.org/ojs/index.php/fm/article/view/5433/4208},
note = {tex.ids: banks2015a}
}
@article{banks2016,
title = {Emotion, anthropomorphism, realism, control: Validation of a merged metric for player{\textendash}avatar interaction (PAX)},
author = {{Banks}, {Jaime} and {Bowman}, {Nicholas David}},
year = {2016},
month = {01},
date = {2016-01-01},
journal = {Computers in Human Behavior},
pages = {215--223},
volume = {54},
doi = {10.1016/j.chb.2015.07.030},
url = {http://www.sciencedirect.com/science/article/pii/S0747563215300406},
note = {tex.ids: banks2016a},
langid = {en}
}
@inbook{cohen2014,
title = {Mediated relationships and social life: Current research on fandom, parasocial relationships, and identification},
author = {{Cohen}, {Jonathan}},
year = {2014},
date = {2014},
publisher = {Routledge/Taylor & Francis Group},
pages = {142--156},
series = {Electronic media research series},
doi = {10.4324/9781315794174-10},
note = {tex.ids: cohen2014a
DOI: 10.4324/9781315794174-10},
address = {New York, NY, US}
}
@inproceedings{kavli2012,
title = {The player's parasocial interaction with digital entities},
author = {{Kavli}, {Katrine}},
year = {2012},
month = {10},
date = {2012-10-03},
publisher = {Association for Computing Machinery},
pages = {83{\textendash}89},
series = {MindTrek '12},
doi = {10.1145/2393132.2393150},
url = {https://doi.org/10.1145/2393132.2393150},
note = {tex.ids: kavli2012a},
address = {Tampere, Finland}
}
@article{lewis2008,
title = {{\textquotedblleft}They May Be Pixels, But They're MY Pixels:{\textquotedblright} Developing a Metric of Character Attachment in Role-Playing Video Games},
author = {{Lewis}, {Melissa L.} and {Weber}, {René} and {Bowman}, {Nicholas David}},
year = {2008},
month = {08},
date = {2008-08},
journal = {CyberPsychology & Behavior},
pages = {515--518},
volume = {11},
number = {4},
doi = {10.1089/cpb.2007.0137},
url = {http://www.liebertpub.com/doi/10.1089/cpb.2007.0137},
note = {tex.ids: lewis2008a},
langid = {en}
}
@inbook{gabriel2016,
title = {Social surrogates, social motivations, and everyday activities: The case for a strong, subtle, and sneaky social self},
author = {{Gabriel}, {Shira} and {Valenti}, {Jennifer} and {Young}, {Ariana F.}},
editor = {{Zanna}, {James M. Olson and Mark P.}},
year = {2016},
date = {2016},
publisher = {Academic Press},
pages = {189--243},
volume = {53},
url = {http://www.sciencedirect.com/science/article/pii/S0065260115000258},
note = {tex.ids: gabriel2016a}
}
@article{enix2010a,
title = {Final Fantasy XIV},
author = {{Enix}, {Square}},
year = {2010},
date = {2010},
note = {Citation Key: enix2010a},
langid = {io}
}
@article{gomillion2017,
title = {Let{\textquoteright}s stay home and watch TV: The benefits of shared media use for close relationships},
author = {{Gomillion}, {Sarah} and {Gabriel}, {Shira} and {Kawakami}, {Kerry} and {Young}, {Ariana F.}},
year = {2017},
month = {09},
date = {2017-09-01},
journal = {Journal of Social and Personal Relationships},
pages = {855--874},
volume = {34},
number = {6},
doi = {10.1177/0265407516660388},
url = {https://doi.org/10.1177/0265407516660388},
note = {tex.ids: gomillion2017a
publisher: SAGE Publications Ltd}
}
@article{leary1995,
title = {Self-esteem as an interpersonal monitor: The sociometer hypothesis},
author = {{Leary}, {Mark R.} and {Tambor}, {Ellen S.} and {Terdal}, {Sonja K.} and {Downs}, {Deborah L.}},
year = {1995},
month = {03},
date = {1995-03},
journal = {Journal of Personality and Social Psychology},
pages = {518--530},
volume = {68},
number = {3},
doi = {10.1037/0022-3514.68.3.518},
url = {http://search.ebscohost.com/login.aspx?direct=true&db=psyh&AN=1995-25087-001&site=ehost-live},
note = {tex.ids: leary1995a}
}
@misc{beresford2020,
title = {Worldwide Digital Video Game Spending Hits Record-Breaking {\$}10.5B in April},
author = {{Beresford}, {Trilby}},
year = {2020},
month = {05},
date = {2020-05-22},
url = {https://www.hollywoodreporter.com/news/worldwide-digital-video-game-spending-hits-record-breaking-105-billion-april-1295670},
note = {Library Catalog: www.hollywoodreporter.com},
langid = {en}
}
@misc{shanley2020,
title = {Gaming Usage Up 75 Percent Amid Coronavirus Outbreak, Verizon Reports},
author = {{Shanley}, {Patrick}},
year = {2020},
month = {03},
date = {2020-03-17},
url = {https://www.hollywoodreporter.com/news/gaming-usage-up-75-percent-coronavirus-outbreak-verizon-reports-1285140},
note = {Library Catalog: www.hollywoodreporter.com},
langid = {en}
}
@misc{superdatastaff2020,
title = {Worldwide digital games market},
author = {{SuperData Staff}, {}},
year = {2020},
month = {05},
date = {2020-05-22},
url = {https://www.superdataresearch.com/blog/worldwide-digital-games-market},
note = {Library Catalog: www.superdataresearch.com},
langid = {canadian}
}
@article{baraniuk2020,
title = {Computer games: More than a lockdown distraction},
author = {{Baraniuk}, {Chris}},
year = {2020},
month = {04},
date = {2020-04-14},
journal = {BBC News},
url = {https://www.bbc.com/news/business-52210938},
note = {tex.ids: baraniuk2020a},
langid = {australian}
}
@article{gregory2020,
title = {Don{\textquoteright}t Feel Bad if Your Kids Are Gaming More Than Ever},
author = {{Gregory}, {Sean}},
year = {2020},
month = {04},
date = {2020-04-22},
journal = {Time},
url = {https://time.com/5825214/video-games-screen-time-parenting-coronavirus/},
note = {tex.ids: gregory2020a
libraryCatalog: time.com
type: Time.},
langid = {en}
}
@misc{langille2020,
title = {Playing video games can ease loneliness during the coronavirus pandemic},
author = {{Langille}, {Aaron} and {Daviau}, {Charles} and {Hawreliak}, {Jason}},
year = {2020},
month = {04},
date = {2020-04-01},
url = {http://theconversation.com/playing-video-games-can-ease-loneliness-during-the-coronavirus-pandemic-134198},
note = {Library Catalog: theconversation.com},
langid = {en}
}
@misc{lazarus2020,
title = {Column: Video games are thriving amid COVID-19 {\textemdash} and experts say that's a good thing},
author = {{Lazarus}, {David}},
year = {2020},
month = {06},
date = {2020-06-16},
url = {https://www.latimes.com/business/story/2020-06-16/column-coronavirus-video-games},
note = {Library Catalog: www.latimes.com
Section: Business},
langid = {canadian}
}
@article{kowert2015,
title = {Playing for social comfort: Online video game play as a social accommodator for the insecurely attached},
author = {{Kowert}, {Rachel} and {Oldmeadow}, {Julian A.}},
year = {2015},
month = {12},
date = {2015-12-01},
journal = {Computers in Human Behavior},
pages = {556--566},
volume = {53},
doi = {10.1016/j.chb.2014.05.004},
url = {http://www.sciencedirect.com/science/article/pii/S0747563214002829},
langid = {en}
}
@inproceedings{vella2015,
title = {Playing Alone, Playing With Others: Differences in Player Experience and Indicators of Wellbeing},
author = {{Vella}, {Kellie} and {Johnson}, {Daniel} and {Hides}, {Leanne}},
year = {2015},
month = {10},
date = {2015-10-05},
publisher = {Association for Computing Machinery},
pages = {3{\textendash}12},
series = {CHI PLAY '15},
doi = {10.1145/2793107.2793118},
url = {https://doi.org/10.1145/2793107.2793118},
address = {London, United Kingdom}
}
@article{carver2010,
title = {Personality and Coping},
author = {{Carver}, {Charles S.} and {Connor-Smith}, {Jennifer}},
year = {2010},
date = {2010},
journal = {Annual Review of Psychology},
pages = {679--704},
volume = {61},
number = {1},
doi = {10.1146/annurev.psych.093008.100352},
url = {https://doi.org/10.1146/annurev.psych.093008.100352},
note = {PMID: 19572784}
}
@article{dijkstra2016,
title = {Engaging in Rather than Disengaging from Stress: Effective Coping and Perceived Control},
author = {{Dijkstra}, {Maria T. M.} and {Homan}, {Astrid C.}},
year = {2016},
month = {09},
date = {2016-09-21},
journal = {Frontiers in Psychology},
volume = {7},
doi = {10.3389/fpsyg.2016.01415},
url = {http://journal.frontiersin.org/Article/10.3389/fpsyg.2016.01415/abstract},
langid = {en}
}
@article{murray2008,
title = {Balancing connectedness and self-protection goals in close relationships: A levels-of-processing perspective on risk regulation},
author = {{Murray}, {Sandra L.} and {Derrick}, {Jaye L.} and {Leder}, {Sadie} and {Holmes}, {John G.}},
year = {2008},
date = {2008},
journal = {Journal of Personality and Social Psychology},
pages = {429--459},
volume = {94},
number = {3},
doi = {10.1037/0022-3514.94.3.429}
}
@article{richman2009,
title = {Reactions to discrimination, stigmatization, ostracism, and other forms of interpersonal rejection: A multimotive model},
author = {{Richman}, {Laura Smart} and {Leary}, {Mark R.}},
year = {2009},
month = {04},
date = {2009-04},
journal = {Psychological review},
pages = {365--383},
volume = {116},
number = {2},
doi = {10.1037/a0015250},
url = {http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2763620/},
note = {tex.ids: richman2009a
PMCID: PMC2763620
PMID: 19348546}
}
@article{connor-smith2000,
title = {Responses to stress in adolescence: Measurement of coping and involuntary stress responses.},
author = {{Connor-Smith}, {Jennifer K.} and {Compas}, {Bruce E.} and {Wadsworth}, {Martha E.} and {Thomsen}, {Alexandra Harding} and {Saltzman}, {Heidi}},
year = {2000},
date = {2000},
journal = {Journal of Consulting and Clinical Psychology},
pages = {976},
volume = {68},
number = {6},
doi = {10.1037/0022-006X.68.6.976},
url = {http://psycnet.apa.org/fulltext/2001-17092-004.pdf}
}
@article{murray2006,
title = {Optimizing assurance: The risk regulation system in relationships},
author = {{Murray}, {Sandra L.} and {Holmes}, {John G.} and {Collins}, {Nancy L.}},
year = {2006},
date = {2006},
journal = {Psychological Bulletin},
pages = {641--666},
volume = {132},
number = {5},
doi = {10.1037/0033-2909.132.5.641}
}
@article{dewall2010,
title = {A little acceptance goes a long way: Applying social impact theory to the rejection-aggression link},
author = {{DeWall}, {C. Nathan} and {Twenge}, {Jean M.} and {Bushman}, {Brad} and {Im}, {Charles} and {Williams}, {Kipling}},
year = {2010},
month = {04},
date = {2010-04},
journal = {Social Psychological and Personality Science},
pages = {168--174},
volume = {1},
number = {2},
doi = {10.1177/1948550610361387}
}
@article{dewall2009,
title = {It's the thought that counts: The role of hostile cognition in shaping aggressive responses to social exclusion},
author = {{DeWall}, {C. Nathan} and {Twenge}, {Jean M.} and {Gitter}, {Seth A.} and {Baumeister}, {Roy F.}},
year = {2009},
month = {01},
date = {2009-01},
journal = {Journal of Personality and Social Psychology},
pages = {45--59},
volume = {96},
number = {1},
doi = {10.1037/a0013196},
url = {http://search.ebscohost.com/login.aspx?direct=true&db=psyh&AN=2008-18683-015&site=ehost-live}
}
@article{romero-canyas2010,
title = {Paying to belong: When does rejection trigger ingratiation?},
author = {{Romero-Canyas}, {Rainer} and {Downey}, {Geraldine} and {Reddy}, {Kavita S.} and {Rodriguez}, {Sylvia} and {Cavanaugh}, {Timothy J.} and {Pelayo}, {Rosemary}},
year = {2010},
date = {2010},
journal = {Journal of Personality and Social Psychology},
pages = {802--823},
volume = {99},
number = {5},
doi = {10.1037/a0020013},
note = {tex.ids: romero-canyas2010a}
}
@article{twenge2001,
title = {If you can't join them, beat them: Effects of social exclusion on aggressive behavior},
author = {{Twenge}, {Jean M.} and {Baumeister}, {Roy F.} and {Tice}, {Dianne M.} and {Stucke}, {Tanja S.}},
year = {2001},
month = {12},
date = {2001-12},
journal = {Journal of Personality and Social Psychology},
pages = {1058--1069},
volume = {81},
number = {6},
doi = {10.1037/0022-3514.81.6.1058},
url = {http://search.ebscohost.com/login.aspx?direct=true&db=psyh&AN=2001-05428-007&site=ehost-live}
}
@article{warburton2006,
title = {When ostracism leads to aggression: The moderating effects of control deprivation},
author = {{Warburton}, {Wayne A.} and {Williams}, {Kipling D.} and {Cairns}, {David R.}},
year = {2006},
month = {03},
date = {2006-03},
journal = {Journal of Experimental Social Psychology},
pages = {213--220},
volume = {42},
number = {2},
doi = {10.1016/j.jesp.2005.03.005}
}
@article{williams1997,
title = {Social ostracism by coworkers: Does rejection lead to loafing or compensation?},
author = {{Williams}, {Kipling D.} and {Sommer}, {Kristin L.}},
year = {1997},
month = {07},
date = {1997-07},
journal = {Personality and Social Psychology Bulletin},
pages = {693--706},
volume = {23},
number = {7},
doi = {10.1177/0146167297237003}
}
@article{dewall2011,
title = {Social exclusion and the desire to reconnect},
author = {{DeWall}, {C. Nathan} and {Richman}, {Stephanie B.}},
year = {2011},
month = {11},
date = {2011-11-01},
journal = {Social and Personality Psychology Compass},
pages = {919--932},
volume = {5},
number = {11},
doi = {10.1111/j.1751-9004.2011.00383.x},
url = {http://onlinelibrary.wiley.com/doi/10.1111/j.1751-9004.2011.00383.x/abstract},
langid = {en}
}
@article{shilling2015,
title = {Goal-Driven Resource Redistribution: An Adaptive Response to Social Exclusion.},
author = {{Shilling}, {Aaron A.} and {Brown}, {Christina M.}},
year = {2015},
date = {2015},
journal = {Evolutionary Behavioral Sciences},
doi = {10.1037/ebs0000062},
url = {http://doi.apa.org/getdoi.cfm?doi=10.1037/ebs0000062},
langid = {en}
}
@article{rusbult1982,
title = {Exit, voice, loyalty, and neglect: Responses to dissatisfaction in romantic involvements.},
author = {{Rusbult}, {Caryl E.} and {Zembrodt}, {Isabella M.} and {Gunn}, {Lawanna K.}},
year = {1982},
date = {1982},
journal = {Journal of Personality and Social Psychology},
pages = {1230},
volume = {43},
number = {6},
doi = {10.1037/0022-3514.43.6.1230},
url = {http://psycnet.apa.org/journals/psp/43/6/1230/}
}
@inbook{heyman2004,
title = {Rapid Marital Interaction Coding System (RMICS)},
author = {{Heyman}, {Richard E.}},
editor = {{Kerig}, {Patricia K.} and {Baucom}, {Donald H.}},
year = {2004},
month = {07},
date = {2004-07-22},
publisher = {Routledge},
pages = {28},
edition = {1st},
url = {https://www.taylorfrancis.com/books/e/9781410610843/chapters/10.4324/9781410610843-14},
address = {New York, NY},