|
1 /* |
|
2 Copyright (c) 2023 MCL Software |
|
3 |
|
4 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), |
|
5 to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|
6 and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
|
7 |
|
8 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
|
9 |
|
10 THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
11 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
|
12 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|
13 */ |
|
14 |
|
15 #include "common.h" |
|
16 #include "effects.h" |
|
17 SDL_TimerID textTimer = 0; |
|
18 bool typingEffectInProgress = 0; |
|
19 |
|
20 static int placesFromLeft = 0; |
|
21 |
|
22 Uint32 animateText(Uint32 interval, Uint16 sizeOfText) |
|
23 { |
|
24 placesFromLeft += 1; |
|
25 if(placesFromLeft >= sizeOfText) |
|
26 { |
|
27 SDL_RemoveTimer(textTimer); |
|
28 typingEffectInProgress = 0; |
|
29 textTimer = 0; |
|
30 return 0; |
|
31 } |
|
32 |
|
33 return 50; |
|
34 } |
|
35 |
|
36 Uint16 ISOL_TypingEffect(Uint16 sizeOfText) |
|
37 { |
|
38 if(typingEffectInProgress) |
|
39 { |
|
40 return placesFromLeft; |
|
41 } |
|
42 |
|
43 else if(placesFromLeft >= sizeOfText) |
|
44 { |
|
45 placesFromLeft = 0; |
|
46 return -1; |
|
47 } |
|
48 |
|
49 else |
|
50 { |
|
51 placesFromLeft = 0; |
|
52 typingEffectInProgress = 1; |
|
53 textTimer = SDL_AddTimer(400, animateText, sizeOfText); |
|
54 } |
|
55 |
|
56 return 0; |
|
57 } |