Commit 3d2de973bc7dbe089fac779c2b1ac00512c517e2
1 parent
956334a2
no message
Showing
48 changed files
with
368 additions
and
0 deletions
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Headers/HttpCallbackHandler.h
0 → 100644
| 1 | +/*=============================================================================== | ||
| 2 | + Copyright (c) 2012-2015 Qualcomm Connected Experiences, Inc. All Rights Reserved. | ||
| 3 | + | ||
| 4 | + Vuforia is a trademark of PTC Inc., registered in the United States and other | ||
| 5 | + countries. | ||
| 6 | + ===============================================================================*/ | ||
| 7 | + | ||
| 8 | +@protocol HttpCallbackHandler | ||
| 9 | + | ||
| 10 | +@required | ||
| 11 | +- (void) TaskComplete : (NSObject*)result : (BOOL) success : (int)eventKey; | ||
| 12 | + | ||
| 13 | +@end | ||
| 0 | \ No newline at end of file | 14 | \ No newline at end of file |
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Headers/KJARCtrlViewController.h
0 → 100644
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Headers/KJARLib.h
0 → 100644
| 1 | +// | ||
| 2 | +// KJARLib.h | ||
| 3 | +// KJARLib | ||
| 4 | +// | ||
| 5 | +// Created by liu on 16/12/13. | ||
| 6 | +// Copyright © 2016年 liu. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <UIKit/UIKit.h> | ||
| 10 | + | ||
| 11 | +//! Project version number for KJARLib. | ||
| 12 | +FOUNDATION_EXPORT double KJARLibVersionNumber; | ||
| 13 | + | ||
| 14 | +//! Project version string for KJARLib. | ||
| 15 | +FOUNDATION_EXPORT const unsigned char KJARLibVersionString[]; | ||
| 16 | + | ||
| 17 | +// In this header, you should import all the public headers of your framework using statements like #import <KJARLib/PublicHeader.h> | ||
| 18 | + | ||
| 19 | + |
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Headers/KJARSCanViewController.h
0 → 100644
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Headers/VuforiaWindow.h
0 → 100644
| 1 | +// | ||
| 2 | +// VuforiaWindow.h | ||
| 3 | +// Youlinyi | ||
| 4 | +// | ||
| 5 | +// Created by imac on 15-11-6. | ||
| 6 | +// Copyright (c) 2015ƒÍ KJTeam. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <UIKit/UIKit.h> | ||
| 10 | + | ||
| 11 | + | ||
| 12 | +@class PlayRenderController; | ||
| 13 | + | ||
| 14 | +@interface VuforiaWindow : UIViewController | ||
| 15 | + | ||
| 16 | + | ||
| 17 | +- (void)StartInitialize; | ||
| 18 | + | ||
| 19 | +- (void)onInitARDone; | ||
| 20 | +- (void)rootViewControllerPresentViewController:(UIViewController*)viewController inContext:(BOOL)currentContext; | ||
| 21 | +- (void)rootViewControllerDismissPresentedViewController; | ||
| 22 | + | ||
| 23 | +// 获得AR窗口绘制区域 | ||
| 24 | +- (CGRect)GetARViewFrame; | ||
| 25 | +- (void)FlipCamera; | ||
| 26 | +- (void)SetLockVideo : (BOOL)isLock; | ||
| 27 | +// 显示等待动画 | ||
| 28 | +- (void)ShowWaitingAnimation : (BOOL)isShow; | ||
| 29 | +// 将要退出 | ||
| 30 | +- (void)WillQuit; | ||
| 31 | + | ||
| 32 | +@property PlayRenderController * RenderController; | ||
| 33 | + | ||
| 34 | +@end |
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Info.plist
0 → 100644
No preview for this file type
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/KJARLib
0 → 100644
No preview for this file type
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Line.fragsh
0 → 100644
| 1 | +/*============================================================================== | ||
| 2 | + Copyright | ||
| 3 | + All Rights Reserved. | ||
| 4 | + ==============================================================================*/ | ||
| 5 | + | ||
| 6 | +precision mediump float; | ||
| 7 | + | ||
| 8 | +uniform float opacity; | ||
| 9 | +uniform vec3 color; | ||
| 10 | + | ||
| 11 | +void main() | ||
| 12 | +{ | ||
| 13 | + gl_FragColor = vec4(color.r, color.g, color.b, opacity); | ||
| 14 | +} |
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Line.vertsh
0 → 100644
| 1 | +/*============================================================================== | ||
| 2 | + Copyright | ||
| 3 | + All Rights Reserved. | ||
| 4 | + ==============================================================================*/ | ||
| 5 | + | ||
| 6 | +attribute vec4 vertexPosition; | ||
| 7 | + | ||
| 8 | +uniform mat4 modelViewProjectionMatrix; | ||
| 9 | + | ||
| 10 | +void main() | ||
| 11 | +{ | ||
| 12 | + gl_Position = modelViewProjectionMatrix * vertexPosition; | ||
| 13 | +} |
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Modules/module.modulemap
0 → 100644
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Simple.fragsh
0 → 100644
| 1 | +/*============================================================================== | ||
| 2 | + Copyright (c) 2012-2015 Qualcomm Connected Experiences, Inc. | ||
| 3 | + All Rights Reserved. | ||
| 4 | + ==============================================================================*/ | ||
| 5 | + | ||
| 6 | +precision mediump float; | ||
| 7 | +varying vec2 texCoord; | ||
| 8 | + | ||
| 9 | +uniform sampler2D texSampler2D; | ||
| 10 | + | ||
| 11 | +void main() | ||
| 12 | +{ | ||
| 13 | + gl_FragColor = texture2D(texSampler2D, texCoord); | ||
| 14 | +} |
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Simple.vertsh
0 → 100644
| 1 | +/*============================================================================== | ||
| 2 | + Copyright (c) 2012-2015 Qualcomm Connected Experiences, Inc. | ||
| 3 | + All Rights Reserved. | ||
| 4 | + ==============================================================================*/ | ||
| 5 | + | ||
| 6 | +attribute vec4 vertexPosition; | ||
| 7 | +attribute vec4 vertexNormal; | ||
| 8 | +attribute vec2 vertexTexCoord; | ||
| 9 | + | ||
| 10 | +varying vec2 texCoord; | ||
| 11 | +varying vec4 normal; | ||
| 12 | + | ||
| 13 | +uniform mat4 modelViewProjectionMatrix; | ||
| 14 | + | ||
| 15 | +void main() | ||
| 16 | +{ | ||
| 17 | + gl_Position = modelViewProjectionMatrix * vertexPosition; | ||
| 18 | + normal = vertexNormal; | ||
| 19 | + texCoord = vertexTexCoord; | ||
| 20 | +} |
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/Simple2.fragsh
0 → 100644
| 1 | +/*============================================================================== | ||
| 2 | + Copyright (c) 2012-2015 Qualcomm Connected Experiences, Inc. | ||
| 3 | + All Rights Reserved. | ||
| 4 | + ==============================================================================*/ | ||
| 5 | + | ||
| 6 | +precision mediump float; | ||
| 7 | +varying vec2 texCoord; | ||
| 8 | + | ||
| 9 | +uniform sampler2D texSampler2D; | ||
| 10 | + | ||
| 11 | +void main() | ||
| 12 | +{ | ||
| 13 | + vec3 keying_color = vec3(0,1,0); | ||
| 14 | + float thresh = 0.8; | ||
| 15 | + float slope = 0.2; | ||
| 16 | + vec3 input_color = texture2D(texSampler2D, texCoord).rgb; | ||
| 17 | + float d = abs(length(abs(keying_color.rgb - input_color.rgb))); | ||
| 18 | + float edge0 = thresh * (1.0 - slope); | ||
| 19 | + float alpha = smoothstep(edge0, thresh, d); | ||
| 20 | + | ||
| 21 | + gl_FragColor = vec4(input_color, alpha); | ||
| 22 | +} |
CNLiveScioLive/Pages/SDK/KJARLib/KJARLib.framework/_CodeSignature/CodeResources
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| 3 | +<plist version="1.0"> | ||
| 4 | +<dict> | ||
| 5 | + <key>files</key> | ||
| 6 | + <dict> | ||
| 7 | + <key>Headers/HttpCallbackHandler.h</key> | ||
| 8 | + <data> | ||
| 9 | + 2EPVTTNHu+WnbmGMKy7hSiIDhwk= | ||
| 10 | + </data> | ||
| 11 | + <key>Headers/KJARCtrlViewController.h</key> | ||
| 12 | + <data> | ||
| 13 | + IZN1D5F9nzpaI7Refm9D2+8t6CY= | ||
| 14 | + </data> | ||
| 15 | + <key>Headers/KJARLib.h</key> | ||
| 16 | + <data> | ||
| 17 | + k301TVBih7JEEhmKR/WYckWs1LI= | ||
| 18 | + </data> | ||
| 19 | + <key>Headers/KJARSCanViewController.h</key> | ||
| 20 | + <data> | ||
| 21 | + M0pyqd6vR5SDleht0zvPyCU25YQ= | ||
| 22 | + </data> | ||
| 23 | + <key>Headers/VuforiaWindow.h</key> | ||
| 24 | + <data> | ||
| 25 | + kfUIobTktKGxx9fI131uzwOj5D0= | ||
| 26 | + </data> | ||
| 27 | + <key>Info.plist</key> | ||
| 28 | + <data> | ||
| 29 | + g3LnVCm2k+RNptyE43cJkw65wR8= | ||
| 30 | + </data> | ||
| 31 | + <key>Line.fragsh</key> | ||
| 32 | + <data> | ||
| 33 | + 07Qqqk77wFjdJ3Feg4jn/YMzKXk= | ||
| 34 | + </data> | ||
| 35 | + <key>Line.vertsh</key> | ||
| 36 | + <data> | ||
| 37 | + LrrYqGs6Xdt5JRSyKcxmkryqxPA= | ||
| 38 | + </data> | ||
| 39 | + <key>Modules/module.modulemap</key> | ||
| 40 | + <data> | ||
| 41 | + kBwARCS/axT2bA6wdOjeMWYBa+Y= | ||
| 42 | + </data> | ||
| 43 | + </dict> | ||
| 44 | + <key>files2</key> | ||
| 45 | + <dict> | ||
| 46 | + <key>Headers/HttpCallbackHandler.h</key> | ||
| 47 | + <data> | ||
| 48 | + 2EPVTTNHu+WnbmGMKy7hSiIDhwk= | ||
| 49 | + </data> | ||
| 50 | + <key>Headers/KJARCtrlViewController.h</key> | ||
| 51 | + <data> | ||
| 52 | + IZN1D5F9nzpaI7Refm9D2+8t6CY= | ||
| 53 | + </data> | ||
| 54 | + <key>Headers/KJARLib.h</key> | ||
| 55 | + <data> | ||
| 56 | + k301TVBih7JEEhmKR/WYckWs1LI= | ||
| 57 | + </data> | ||
| 58 | + <key>Headers/KJARSCanViewController.h</key> | ||
| 59 | + <data> | ||
| 60 | + M0pyqd6vR5SDleht0zvPyCU25YQ= | ||
| 61 | + </data> | ||
| 62 | + <key>Headers/VuforiaWindow.h</key> | ||
| 63 | + <data> | ||
| 64 | + kfUIobTktKGxx9fI131uzwOj5D0= | ||
| 65 | + </data> | ||
| 66 | + <key>Line.fragsh</key> | ||
| 67 | + <data> | ||
| 68 | + 07Qqqk77wFjdJ3Feg4jn/YMzKXk= | ||
| 69 | + </data> | ||
| 70 | + <key>Line.vertsh</key> | ||
| 71 | + <data> | ||
| 72 | + LrrYqGs6Xdt5JRSyKcxmkryqxPA= | ||
| 73 | + </data> | ||
| 74 | + <key>Modules/module.modulemap</key> | ||
| 75 | + <data> | ||
| 76 | + kBwARCS/axT2bA6wdOjeMWYBa+Y= | ||
| 77 | + </data> | ||
| 78 | + </dict> | ||
| 79 | + <key>rules</key> | ||
| 80 | + <dict> | ||
| 81 | + <key>^</key> | ||
| 82 | + <true/> | ||
| 83 | + <key>^.*\.lproj/</key> | ||
| 84 | + <dict> | ||
| 85 | + <key>optional</key> | ||
| 86 | + <true/> | ||
| 87 | + <key>weight</key> | ||
| 88 | + <real>1000</real> | ||
| 89 | + </dict> | ||
| 90 | + <key>^.*\.lproj/locversion.plist$</key> | ||
| 91 | + <dict> | ||
| 92 | + <key>omit</key> | ||
| 93 | + <true/> | ||
| 94 | + <key>weight</key> | ||
| 95 | + <real>1100</real> | ||
| 96 | + </dict> | ||
| 97 | + <key>^version.plist$</key> | ||
| 98 | + <true/> | ||
| 99 | + </dict> | ||
| 100 | + <key>rules2</key> | ||
| 101 | + <dict> | ||
| 102 | + <key>.*\.dSYM($|/)</key> | ||
| 103 | + <dict> | ||
| 104 | + <key>weight</key> | ||
| 105 | + <real>11</real> | ||
| 106 | + </dict> | ||
| 107 | + <key>^</key> | ||
| 108 | + <dict> | ||
| 109 | + <key>weight</key> | ||
| 110 | + <real>20</real> | ||
| 111 | + </dict> | ||
| 112 | + <key>^(.*/)?\.DS_Store$</key> | ||
| 113 | + <dict> | ||
| 114 | + <key>omit</key> | ||
| 115 | + <true/> | ||
| 116 | + <key>weight</key> | ||
| 117 | + <real>2000</real> | ||
| 118 | + </dict> | ||
| 119 | + <key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key> | ||
| 120 | + <dict> | ||
| 121 | + <key>nested</key> | ||
| 122 | + <true/> | ||
| 123 | + <key>weight</key> | ||
| 124 | + <real>10</real> | ||
| 125 | + </dict> | ||
| 126 | + <key>^.*</key> | ||
| 127 | + <true/> | ||
| 128 | + <key>^.*\.lproj/</key> | ||
| 129 | + <dict> | ||
| 130 | + <key>optional</key> | ||
| 131 | + <true/> | ||
| 132 | + <key>weight</key> | ||
| 133 | + <real>1000</real> | ||
| 134 | + </dict> | ||
| 135 | + <key>^.*\.lproj/locversion.plist$</key> | ||
| 136 | + <dict> | ||
| 137 | + <key>omit</key> | ||
| 138 | + <true/> | ||
| 139 | + <key>weight</key> | ||
| 140 | + <real>1100</real> | ||
| 141 | + </dict> | ||
| 142 | + <key>^Info\.plist$</key> | ||
| 143 | + <dict> | ||
| 144 | + <key>omit</key> | ||
| 145 | + <true/> | ||
| 146 | + <key>weight</key> | ||
| 147 | + <real>20</real> | ||
| 148 | + </dict> | ||
| 149 | + <key>^PkgInfo$</key> | ||
| 150 | + <dict> | ||
| 151 | + <key>omit</key> | ||
| 152 | + <true/> | ||
| 153 | + <key>weight</key> | ||
| 154 | + <real>20</real> | ||
| 155 | + </dict> | ||
| 156 | + <key>^[^/]+$</key> | ||
| 157 | + <dict> | ||
| 158 | + <key>nested</key> | ||
| 159 | + <true/> | ||
| 160 | + <key>weight</key> | ||
| 161 | + <real>10</real> | ||
| 162 | + </dict> | ||
| 163 | + <key>^embedded\.provisionprofile$</key> | ||
| 164 | + <dict> | ||
| 165 | + <key>weight</key> | ||
| 166 | + <real>20</real> | ||
| 167 | + </dict> | ||
| 168 | + <key>^version\.plist$</key> | ||
| 169 | + <dict> | ||
| 170 | + <key>weight</key> | ||
| 171 | + <real>20</real> | ||
| 172 | + </dict> | ||
| 173 | + </dict> | ||
| 174 | +</dict> | ||
| 175 | +</plist> |
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/Thumbs.db
0 → 100644
No preview for this file type
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0000.png
0 → 100644
7.91 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0001.png
0 → 100644
7.91 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0002.png
0 → 100644
7.91 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0003.png
0 → 100644
7.87 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0004.png
0 → 100644
7.87 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0005.png
0 → 100644
7.87 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0006.png
0 → 100644
7.88 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0007.png
0 → 100644
7.88 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0008.png
0 → 100644
7.88 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0009.png
0 → 100644
7.71 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0010.png
0 → 100644
7.71 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0011.png
0 → 100644
7.71 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0012.png
0 → 100644
7.88 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0013.png
0 → 100644
7.88 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0014.png
0 → 100644
7.88 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0015.png
0 → 100644
7.87 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0016.png
0 → 100644
7.87 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0017.png
0 → 100644
7.87 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0018.png
0 → 100644
7.88 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0019.png
0 → 100644
7.88 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0020.png
0 → 100644
7.88 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0021.png
0 → 100644
7.74 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0022.png
0 → 100644
7.74 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/animation1/loader_spinner0023.png
0 → 100644
7.74 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/arscan_back@2x.png
0 → 100644
2.81 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/arscan_back@3x.png
0 → 100644
4.31 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/arscan_flip@2x.png
0 → 100644
3.03 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/arscan_flip@3x.png
0 → 100644
4.2 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/arscan_lock@2x.png
0 → 100644
3.53 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/arscan_lock@3x.png
0 → 100644
5.32 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/arscan_unlock@2x.png
0 → 100644
3.46 KB
CNLiveScioLive/Pages/SDK/KJARLib/资源文件/arscan_unlock@3x.png
0 → 100644
5.28 KB
CNLiveScioLive/Pages/Sources/aboutEN.html
0 → 100755
| 1 | +<!DOCTYPE html> | ||
| 2 | +<html> | ||
| 3 | + <head> | ||
| 4 | + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
| 5 | + <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0" /> | ||
| 6 | + <link href="style.css" rel="stylesheet" type="text/css" /> | ||
| 7 | + </head> | ||
| 8 | + <body> | ||
| 9 | + <br> | ||
| 10 | + <div align="center"><img src="cnlive_zhouxin_icon.png"/></div> | ||
| 11 | +<!-- <h3><center>本办介绍</center></h3>--> | ||
| 12 | + <div class="logo" style="text-indent:2em">The State Council Information Office of China (SCIO) is an administrative office under China's State Council. Established in 1991, it is the chief information office of the Chinese government.</div> | ||
| 13 | + <div class="logo" style="text-indent:2em">The major function of the SCIO is to propel domestic media further along the path of introducing China to the international community, including China's domestic and foreign policies, the development of the Chinese economy and society, as well as China's history, technology, education and culture. The SCIO also holds press conferences regarding major national policies, and provides books, magazines, films, television programs and other means of communication to introduce China to the world. The SCIO also helps foreign journalists to cover China, as well as carries out exchanges with governments and media outlets from across the globe. Besides, the SCIO encourages Chinese media to cover international news to help the Chinese public learn about the economic, technological, and cultural issues in the world.</div> | ||
| 14 | + <div class="logo" style="text-indent:2em">The mission of the SCIO is to promote the communication, understanding and trust between China and countries across the world.</div> | ||
| 15 | +<!-- <div class="logo" style="text-indent:2em">国务院新闻办的工作目的是促进中国与世界各国之间的沟通了解与合作互信,通过组织新闻报道,为维护世界的和平稳定和推进人类进步事业发挥积极的建设性的作用。</div>--> | ||
| 16 | + </body> | ||
| 17 | +</html> |