Fixed svace errors and disabled indicator
[platform/core/uifw/dali-demo.git] / examples / fpp-game / game-utils.cpp
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #include <inttypes.h>
19 #include <stdio.h>
20
21 #include "game-utils.h"
22
23 namespace GameUtils
24 {
25 bool LoadFile( const char* filename, ByteArray& bytes )
26 {
27   FILE* fin = fopen( filename, "rb" );
28   if( fseek( fin, 0, SEEK_END ) )
29   {
30     return false;
31   }
32   bytes.resize( ftell( fin ) );
33   std::fill( bytes.begin(), bytes.end(), 0 );
34   if( fseek( fin, 0, SEEK_SET ) )
35   {
36     return false;
37   }
38   size_t result = fread( bytes.data(), 1, bytes.size(), fin );
39   fclose( fin );
40   return (result != 0);
41 }
42
43 size_t HashString( const char* str )
44 {
45   size_t hash = 5381;
46   int c;
47   while( ( c = *str++ ) )
48   {
49      hash = ((hash << 5) + hash) + c;
50   }
51   return hash;
52 }
53
54 }