|
1 | 1 | <html>
|
2 | 2 | <head>
|
| 3 | + <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> |
3 | 4 | </head>
|
4 | 5 | <body style="margin: 0; padding: 0; background: linear-gradient(90deg,#1b3786,#24b3c0);">
|
5 | 6 |
|
6 | 7 | <script>
|
7 |
| - var initialized = false; |
8 | 8 |
|
9 |
| - function initGDApi() { |
10 |
| - |
11 |
| - if (!initialized) { |
12 |
| - |
13 |
| - var settings = { |
14 |
| - debug: true, |
15 |
| - gameId: 'e0b2074386f94e689c4b2c4abd184a50', // Your gameId which is unique for each one of your games; can be found at your Gamedistribution.com account. |
16 |
| - userId: 'BE563B84-88A2-4D17-9541-A55350303D64-s1', // Your userId which can be found at your Gamedistribution.com account. |
17 |
| - advertisementSettings: { |
18 |
| - debug: false, // Enable IMA SDK debugging. |
19 |
| - prefix: 'gd-', // Set your own prefix in case you get id conflicts. |
20 |
| - autoplay: false, // Enable auto start of pre-roll advertisement. |
21 |
| - responsive: true, // Enable advertisement responsiveness, otherwise given width and height will be used. |
22 |
| - width: 640, // Width of the advertisement if the ad is not set to be responsive. |
23 |
| - height: 360, // Height of the advertisement if the ad is not set to be responsive. |
24 |
| - locale: 'en', // Locale used in IMA SDK, this will localise the "Skip ad after x seconds" phrases. |
25 |
| - container: '', // Container id for custom ad placement. |
26 |
| - }, |
27 |
| - resumeGame: function() { // Callback function for resuming your game after banner closed |
28 |
| - // ... |
29 |
| - }, |
30 |
| - pauseGame: function () { // Callback function for pausing your game when an advertisement starts. |
31 |
| - // ... |
32 |
| - }, |
33 |
| - onEvent: function(event) { |
34 |
| - switch (event.name) { |
35 |
| - case 'SDK_GAME_START': |
36 |
| - // ... |
37 |
| - break; |
38 |
| - case 'SDK_GAME_PAUSE': |
39 |
| - // ... |
40 |
| - break; |
41 |
| - case 'SDK_READY': |
42 |
| - initialized = true; |
43 |
| - break; |
44 |
| - case 'AD_ERROR': |
45 |
| - // ... |
46 |
| - break; |
47 |
| - } |
48 |
| - }, |
49 |
| - onInit: function() { |
50 |
| - // Not used anymore. Use onEvent now. |
51 |
| - }, |
52 |
| - onError: function() { |
53 |
| - // Not used anymore. Use onEvent now. |
54 |
| - } |
55 |
| - }; |
56 |
| - (function(i, s, o, g, r, a, m) { |
57 |
| - i['GameDistribution'] = r; |
58 |
| - i[r] = i[r] || function() { |
59 |
| - (i[r].q = i[r].q || []).push(arguments) |
60 |
| - }; |
61 |
| - i[r].l = 1 * new Date(); |
62 |
| - a = s.createElement(o); |
63 |
| - m = s.getElementsByTagName(o)[0]; |
64 |
| - a.async = 1; |
65 |
| - a.src = g; |
66 |
| - m.parentNode.insertBefore(a, m); |
67 |
| - })(window, document, 'script', '/lib/main.min.js', 'gdApi'); |
68 |
| - |
69 |
| - gdApi(settings); |
70 |
| - } |
71 |
| - |
72 |
| - } |
73 |
| - |
74 |
| - // Initialize the SDK. |
75 |
| - initGDApi(); |
| 9 | + var settings = { |
| 10 | + // This is the gameId you get when you've create a game on gamedistribution.com |
| 11 | + gameId: 'e0b2074386f94e689c4b2c4abd184a50', |
| 12 | + |
| 13 | + // Along with the gameid you'll also be supplied a userId, put it here |
| 14 | + userId: 'BE563B84-88A2-4D17-9541-A55350303D64-s1', |
| 15 | + |
| 16 | + // This function will be called when the ad begins and when your game should be paused. It's required that you mute your game at this point |
| 17 | + pauseGame: function() { |
| 18 | + // ... |
| 19 | + }, |
| 20 | + |
| 21 | + // This callback is called when the ad is finished, you can resume your game and unmute your audio |
| 22 | + resumeGame: function() { |
| 23 | + // ... |
| 24 | + }, |
| 25 | + |
| 26 | + // Called when the gdApi initlialized, will be deprecated soon |
| 27 | + onInit: function(data) { |
| 28 | + // ... |
| 29 | + }, |
| 30 | + |
| 31 | + // Called when an error appears in the gdApi, will be deprecated soon |
| 32 | + onError: function(data) { |
| 33 | + // ... |
| 34 | + }, |
| 35 | + }; |
| 36 | + |
| 37 | + (function(i, s, o, g, r, a, m) { |
| 38 | + i['GameDistribution'] = r; |
| 39 | + i[r] = i[r] || function() { |
| 40 | + (i[r].q = i[r].q || []).push(arguments); |
| 41 | + }; |
| 42 | + i[r].l = 1 * new Date(); |
| 43 | + a = s.createElement(o); |
| 44 | + m = s.getElementsByTagName(o)[0]; |
| 45 | + a.async = 1; |
| 46 | + a.src = g; |
| 47 | + m.parentNode.insertBefore(a, m); |
| 48 | + })(window, document, 'script', '/lib/main.js', 'gdApi'); |
| 49 | + |
| 50 | + gdApi(settings); |
76 | 51 |
|
77 | 52 | </script>
|
78 | 53 | </body>
|
|
0 commit comments