File Coverage

blib/lib/Story/Interact/State.pm
Criterion Covered Total %
statement 41 74 55.4
branch 1 12 8.3
condition 2 3 66.6
subroutine 18 22 81.8
pod 0 6 0.0
total 62 117 52.9


line stmt bran cond sub pod time code
1 5     5   93 use 5.010001;
  5         17  
2 5     5   23 use strict;
  5         24  
  5         99  
3 5     5   26 use warnings;
  5         10  
  5         319  
4              
5             package Story::Interact::State;
6              
7             warn "LOADED DEV VERSION!";
8              
9             our $AUTHORITY = 'cpan:TOBYINK';
10             our $VERSION = '0.001014';
11              
12 5     5   1906 use Story::Interact::Character ();
  5         21  
  5         179  
13              
14 5     5   58 use Moo;
  5         92  
  5         54  
15 5     5   1882 use Module::Runtime qw( use_package_optimistically );
  5         29  
  5         81  
16 5     5   455 use Types::Common -types;
  5         15  
  5         68  
17 5     5   69677 use namespace::clean;
  5         12  
  5         47  
18              
19             has 'world' => (
20             is => 'ro',
21             isa => HashRef,
22 9     9   379 builder => sub { {} },
23             );
24              
25             has 'character' => (
26             is => 'ro',
27             isa => HashRef->of( Object ),
28 9     9   16275 builder => sub { {} },
29             );
30              
31             has 'location' => (
32             is => 'ro',
33             isa => HashRef->of( HashRef ),
34 9     9   333 builder => sub { {} },
35             );
36              
37             has 'visited' => (
38             is => 'ro',
39             isa => HashRef->of( PositiveOrZeroInt ),
40 9     9   407 builder => sub { {} },
41             );
42              
43             has 'character_class' => (
44             is => 'ro',
45             isa => Str,
46 9     9   439 builder => sub { 'Story::Interact::Character' },
47             );
48              
49             has 'params' => (
50             is => 'rw',
51             isa => HashRef,
52 9     9   355 builder => sub { {} },
53             );
54              
55             sub BUILD {
56 9     9 0 231 my ( $self, $arg ) = @_;
57 9         108 $self->define_npc( player => ( name => 'Anon' ) );
58             }
59              
60             sub player {
61 55     55 0 94 my ( $self ) = @_;
62 55         1201 return $self->character->{player};
63             }
64              
65             sub define_npc {
66 10     10 0 40 my ( $self, $code, %attrs ) = @_;
67 10 50       88 return if defined $self->character->{$code};
68            
69 10   66     91 my $character_class = delete( $attrs{class} ) // $self->character_class;
70 10         52 $self->character->{$code} = use_package_optimistically( $character_class )->new( %attrs );
71             }
72              
73             sub update_from_page {
74 45     45 0 94 my ( $self, $page ) = @_;
75 45         199 ++$self->visited->{ $page->id };
76 45         122 $self->player->_set_location( $page->location );
77 45         1333 return $self;
78             }
79              
80             sub _maybe_encrypt {
81 0     0     my ( $self, $data ) = @_;
82 0 0         my $key = $ENV{PERL_STORY_INTERACT_KEY} or return $data;
83            
84 0           require Crypt::Mode::OFB;
85 0           require Bytes::Random::Secure;
86 0           my $iv = Bytes::Random::Secure::random_string_from( 'abcdefghijklmnopqrstuvwxyz0123456789', 8 );
87 0           my $m = Crypt::Mode::OFB->new( 'CAST5' );
88 0           return sprintf( 'CRYPTX:%s:%s', $iv, $m->encrypt( $data, $key, $iv ) );
89             }
90              
91             sub _maybe_decrypt {
92 0     0     my ( $class, $data ) = @_;
93            
94 0 0         if ( substr( $data, 0, 7 ) eq 'CRYPTX:' ) {
95 0 0         my $key = $ENV{PERL_STORY_INTERACT_KEY} or die 'PERL_STORY_INTERACT_KEY not found!';
96 0           require Crypt::Mode::OFB;
97 0           my $m = Crypt::Mode::OFB->new( 'CAST5' );
98 0           my $iv = substr( $data, 7, 8 );
99 0           my $ciphertext = substr( $data, 16 );
100 0           return $m->decrypt( $ciphertext, $key, $iv );
101             }
102            
103 0 0         die 'Failed to load non-encrypted state!!!' if $ENV{PERL_STORY_INTERACT_FORCE_ENCRYPTED};
104 0           return $data;
105             }
106              
107             sub dump {
108 0     0 0   my ( $self ) = @_;
109 0           require Storable;
110 0           require MIME::Base64;
111 0           require Compress::Bzip2;
112 0           my $frozen = Compress::Bzip2::memBzip( Storable::nfreeze( $self ) );
113 0           my $encrypted = $self->_maybe_encrypt( $frozen );
114 0           return MIME::Base64::encode_base64( $encrypted );
115             }
116              
117             sub load {
118 0     0 0   my ( $class, $data ) = @_;
119 0           require Storable;
120 0           require MIME::Base64;
121 0           require Compress::Bzip2;
122 0           my $frozen = MIME::Base64::decode_base64( $data );
123 0           my $decrypted = $class->_maybe_decrypt( $frozen );
124 0 0         if ( my $unzipped = Compress::Bzip2::memBunzip( $decrypted ) ) {
125 0           return Storable::thaw( $unzipped );
126             }
127 0           return Storable::thaw( $decrypted );
128             }
129              
130             1;