12ac0019ee87ccc642f4191d6f750f16474f170d
[platform/core/uifw/dali-demo.git] / examples / fpp-game / game-utils.cpp
1 /*
2  * Copyright (c) 2019 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 #include <dali/integration-api/debug.h>
21 #include <dali/devel-api/adaptor-framework/file-loader.h>
22
23 #include "game-utils.h"
24
25 namespace GameUtils
26 {
27 bool LoadFile( const char* filename, ByteArray& bytes )
28 {
29   std::streampos bufferSize = 0;
30   Dali::Vector<char> fileBuffer;
31   if( !Dali::FileLoader::ReadFile( filename, bufferSize, fileBuffer, Dali::FileLoader::FileType::BINARY ) )
32   {
33     return false;
34   }
35
36   FILE* fin = fmemopen( &fileBuffer[0], bufferSize, "rb" );
37   if( fin )
38   {
39     if( fseek( fin, 0, SEEK_END ) )
40     {
41       fclose(fin);
42       return false;
43     }
44     bytes.resize( ftell( fin ) );
45     std::fill( bytes.begin(), bytes.end(), 0 );
46     if( fseek( fin, 0, SEEK_SET ) )
47     {
48       fclose( fin );
49       return false;
50     }
51     size_t result = fread( bytes.data(), 1, bytes.size(), fin );
52     fclose( fin );
53     return ( result != 0 );
54   }
55   return false;
56 }
57
58 size_t HashString( const char* str )
59 {
60   size_t hash = 5381;
61   int c;
62   while( ( c = *str++ ) )
63   {
64      hash = ((hash << 5) + hash) + c;
65   }
66   return hash;
67 }
68
69 }