|
|
|
|
import AppConfig from "../../FrameWork/Config/AppConfig";
|
|
|
|
|
import AppSwitchConfig from "../../FrameWork/Config/AppSwitchConfig";
|
|
|
|
|
import { ryw_Event } from "../../FrameWork/Event/EventEnum";
|
|
|
|
|
import EventMgr from "../../FrameWork/Event/EventMgr";
|
|
|
|
|
import BundleMgr from "../../FrameWork/Mgr/BundleMgr";
|
|
|
|
|
import VibrateMgr from "../../FrameWork/Mgr/VibrateMgr";
|
|
|
|
|
|
|
|
|
|
import User from "../../FrameWork/User/User";
|
|
|
|
|
import AppPlatform from "../../FrameWork/Util/AppPlatform";
|
|
|
|
|
import PhysicalPowerManger from "../../ttFrame/manager/PhysicalPowerManger";
|
|
|
|
|
|
|
|
|
|
/**羊移动方向 */
|
|
|
|
|
export enum SHEEP_Normal {
|
|
|
|
|
/**上 */
|
|
|
|
|
UP,
|
|
|
|
|
/**下 */
|
|
|
|
|
DOWN,
|
|
|
|
|
/**左 */
|
|
|
|
|
LEFT,
|
|
|
|
|
/**右 */
|
|
|
|
|
RIGHT
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const { ccclass, property } = cc._decorator;
|
|
|
|
|
|
|
|
|
|
@ccclass
|
|
|
|
|
export default class Common5 {
|
|
|
|
|
|
|
|
|
|
public static isTouching: boolean = false;
|
|
|
|
|
public static isFirstIn: number = 0;//玩家是否第一次进入
|
|
|
|
|
|
|
|
|
|
public static isNoEnergyMode = 1; //畅玩
|
|
|
|
|
|
|
|
|
|
public static isMute: boolean = false;//是否静音
|
|
|
|
|
public static isNoMusic: boolean = false;//是否静音
|
|
|
|
|
public static isNoEffect: boolean = false;//是否静音
|
|
|
|
|
public static isNoZD: boolean = false;//是否关闭震动
|
|
|
|
|
|
|
|
|
|
//游戏相关
|
|
|
|
|
public static gameConfig = null;
|
|
|
|
|
public static stop = false;
|
|
|
|
|
public static gameType: number = 0;//0-普通模式,1-考试模式,2-复玩
|
|
|
|
|
public static wordGameType = 0;
|
|
|
|
|
public static curWordGameType = 0; //记录当前在哪个分类
|
|
|
|
|
public static UNLOCKGAME_ID = 52;
|
|
|
|
|
public static selectGameNum: number = -1;//选择的是第几关
|
|
|
|
|
public static selectGameInfo = null;//选择的关卡信息
|
|
|
|
|
public static isNormal = false;
|
|
|
|
|
public static loadingTime = 0;
|
|
|
|
|
|
|
|
|
|
public static showAllGameUnLock = false;
|
|
|
|
|
public static tuijianGameIndex = 0;
|
|
|
|
|
|
|
|
|
|
public static addGameArr =
|
|
|
|
|
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
|
|
|
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
|
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
|
|
|
|
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
|
|
|
|
|
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
|
|
|
|
|
51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
|
|
|
|
|
61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
|
|
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
|
|
|
|
|
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
|
|
|
|
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
|
|
|
|
101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437];
|
|
|
|
|
|
|
|
|
|
public static duckGameArr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
|
|
|
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
|
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
|
|
|
|
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
|
|
|
|
|
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
|
|
|
|
|
51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
|
|
|
|
|
61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
|
|
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
|
|
|
|
|
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
|
|
|
|
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
|
|
|
|
101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437];
|
|
|
|
|
/**游泳模式 */
|
|
|
|
|
public static swimmGameArr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
|
|
|
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
|
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
|
|
|
|
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
|
|
|
|
|
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
|
|
|
|
|
51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
|
|
|
|
|
61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
|
|
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
|
|
|
|
|
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
|
|
|
|
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
|
|
|
|
101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437];
|
|
|
|
|
/**烤肠模式 */
|
|
|
|
|
public static RollGameArr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
|
|
|
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
|
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
|
|
|
|
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
|
|
|
|
|
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
|
|
|
|
|
51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
|
|
|
|
|
61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
|
|
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
|
|
|
|
|
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
|
|
|
|
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
|
|
|
|
101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437];
|
|
|
|
|
/**救救模式 */
|
|
|
|
|
public static SaveGameArr =
|
|
|
|
|
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10,
|
|
|
|
|
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
|
|
|
|
|
21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
|
|
|
|
|
31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
|
|
|
|
|
41, 42, 43, 44, 45, 46, 47, 48, 49, 50,
|
|
|
|
|
51, 52, 53, 54, 55, 56, 57, 58, 59, 60,
|
|
|
|
|
61, 62, 63, 64, 65, 66, 67, 68, 69, 70,
|
|
|
|
|
71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
|
|
|
|
|
81, 82, 83, 84, 85, 86, 87, 88, 89, 90,
|
|
|
|
|
91, 92, 93, 94, 95, 96, 97, 98, 99, 100,
|
|
|
|
|
101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437];
|
|
|
|
|
public static isNoPower: boolean = false;//体力不够
|
|
|
|
|
|
|
|
|
|
public static isBackLevel = 1;
|
|
|
|
|
public static levelPageIndex = 0;
|
|
|
|
|
public static videoGetPowerNum = 3; //普通体力视频获取点数
|
|
|
|
|
public static powerRecoverTime = 300; //体力恢复时间(s)
|
|
|
|
|
public static fisrtPower = 1; //玩家第一次进入游戏的体力值
|
|
|
|
|
public static maxPower = 3; //体力值上限
|
|
|
|
|
public static tipNode = null;
|
|
|
|
|
public static videoFirstGetPowerNum = 2; //无限体力第一次视频获取点数
|
|
|
|
|
public static videoSecondGetPowerNum = 3; //无限体力第二次视频获取点数
|
|
|
|
|
|
|
|
|
|
public static videoWxtlPowerNum = 2; //无限体力获取视频数
|
|
|
|
|
public static videoDayUnlockNum = 3; //无限体力获取视频数
|
|
|
|
|
|
|
|
|
|
public static dragTar: number = 0;//0没点击,1此对象点击
|
|
|
|
|
/**肉肠平移速度 */
|
|
|
|
|
public static rollSpeed: number = 0;
|
|
|
|
|
/**羊的层级 */
|
|
|
|
|
public static sheepZindex: number = 1;
|
|
|
|
|
|
|
|
|
|
public static audioID = -1;
|
|
|
|
|
|
|
|
|
|
public static isCeBianLanEnter:boolean = false//是否从侧边栏进入游戏
|
|
|
|
|
// LIFE-CYCLE CALLBACKS:
|
|
|
|
|
|
|
|
|
|
// onLoad () {}
|
|
|
|
|
public static onHideState = {
|
|
|
|
|
gold:0, //金币
|
|
|
|
|
strength:0, //体力
|
|
|
|
|
sendCardTimes:0, //发牌次数
|
|
|
|
|
unlockLevel:0, //已经解锁关卡/槽位
|
|
|
|
|
removeTimes:0, //消除次数
|
|
|
|
|
default1:0, //默认字段1
|
|
|
|
|
default2:0, //默认字段2
|
|
|
|
|
default3:0 //默认字段3
|
|
|
|
|
}
|
|
|
|
|
start() {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static isLetterOrNumber(str): boolean {
|
|
|
|
|
if (/[A-Za-z0-9-\_]$/g.test(str)) { //英文字母、数字、下划线
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public static setNodePos(pointNode: cc.Node, x, y) {
|
|
|
|
|
pointNode.setPosition(x, y);
|
|
|
|
|
}
|
|
|
|
|
public static LoadRemoteBundle(name, func) {
|
|
|
|
|
BundleMgr.loadBundleByName_custom(name, handleFM_custom((err, bundle) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.error(err);
|
|
|
|
|
} else {
|
|
|
|
|
func();
|
|
|
|
|
}
|
|
|
|
|
}, this));
|
|
|
|
|
}
|
|
|
|
|
public static initPowerConfig() {
|
|
|
|
|
let cfg = AppSwitchConfig.getInstance_custom().getAppSwitchData_custom().ttcfg_custom;
|
|
|
|
|
Common5.videoGetPowerNum = cfg.videoGetPowerNum; //普通体力视频获取点数
|
|
|
|
|
Common5.powerRecoverTime = cfg.powerRecoverTime; //体力恢复时间(s`)
|
|
|
|
|
Common5.fisrtPower = cfg.fisrtPower; //玩家第一次进入游戏的体力值
|
|
|
|
|
Common5.maxPower = cfg.maxPower; //体力值上限
|
|
|
|
|
Common5.videoFirstGetPowerNum = cfg.videoFirstGetPowerNum; //无限体力第一次视频获取点数
|
|
|
|
|
Common5.videoSecondGetPowerNum = cfg.videoSecondGetPowerNum; //无限体力第二次视频获取点数
|
|
|
|
|
Common5.videoWxtlPowerNum = cfg.videoWxtlPowerNum;
|
|
|
|
|
Common5.videoDayUnlockNum = cfg.videoUnlockDayNum;
|
|
|
|
|
/**多少秒恢复一个体力值 */
|
|
|
|
|
PhysicalPowerManger.RecoverPhysicalTime = Common5.powerRecoverTime;
|
|
|
|
|
/**最大的体力值 */
|
|
|
|
|
PhysicalPowerManger.MaxPhysical = Common5.maxPower;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 加载oss上游戏相关json配置
|
|
|
|
|
*/
|
|
|
|
|
public static loadPassConfig_custom() {
|
|
|
|
|
// cc.assetManager.loadRemote(AppConfig.ResServer_custom + "/json/GameConfig.json", (err, gameconfig: cc.JsonAsset) => {
|
|
|
|
|
// if (err) {
|
|
|
|
|
// console.log("loadAngelConfig-----err,改从本地读取");
|
|
|
|
|
// this.loadConfigLocal_custom();
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
// Common5.gameConfig = gameconfig.json;
|
|
|
|
|
// console.log("==========读取oss-gameconfig成功==========");
|
|
|
|
|
// })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 加载本地游戏相关json配置
|
|
|
|
|
*/
|
|
|
|
|
public static loadConfigLocal_custom(AppSwitchcallback?) {
|
|
|
|
|
cc.loader.loadRes('Json/AppSwitch/AppSwitch.json', function (err, gameconfig) {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log('加载AppSwitch错误')
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
AppSwitchConfig.getInstance_custom().loadLocalJson(gameconfig.json, AppSwitchcallback)
|
|
|
|
|
//console.log("游戏配置加载成功", Common5.juQingStocksConfig);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cc.loader.loadRes('Json/GameConfig.json', function (err, gameconfig) {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log(err);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
Common5.gameConfig = gameconfig.json;
|
|
|
|
|
console.log("游戏配置加载成功", Common5.gameConfig);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 加载远程图片
|
|
|
|
|
* @param picSp 图片展示sprite
|
|
|
|
|
* @param url 图片地址
|
|
|
|
|
*/
|
|
|
|
|
public static addUrlSprite_custom(picSp: cc.Sprite, url: string) {
|
|
|
|
|
cc.assetManager.loadRemote(url, (err, texture) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log("加载图片失败")
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
//@ts-ignore
|
|
|
|
|
var sprite0 = new cc.SpriteFrame(texture);
|
|
|
|
|
picSp.spriteFrame = sprite0;
|
|
|
|
|
// console.log("this.maxBallShowSprite",this.maxBallShowSprite);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static addResourseSprite_custom(picSp: cc.Sprite, url: string) {
|
|
|
|
|
cc.resources.load(url, cc.Texture2D, function (err, texture: cc.Texture2D) {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log("加载图片失败")
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var sprite0 = new cc.SpriteFrame(texture);
|
|
|
|
|
picSp.spriteFrame = sprite0;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 注册节点点击事件
|
|
|
|
|
*
|
|
|
|
|
* @param btnNode 按钮节点
|
|
|
|
|
* @param callback 点击事件
|
|
|
|
|
* @param protectedTime 保护时间,防止连续点击
|
|
|
|
|
* @param scaleTime 放大缩小时间
|
|
|
|
|
* @param soundName 按钮音效
|
|
|
|
|
* @param clickSprite 点击按钮图片
|
|
|
|
|
*/
|
|
|
|
|
public static btnRegister_custom(btnNode: cc.Node, callback: Function, protectedTime: number = 0.1, scaleTime: number = 0.2, soundName: string = "ui", clickSprite: cc.SpriteFrame = null) {
|
|
|
|
|
//console.log("注册按钮事件", btnNode.name);
|
|
|
|
|
let btnSprite = null;//btnNode.getComponent(cc.Sprite).spriteFrame;
|
|
|
|
|
if (btnNode.getComponent(cc.Sprite) != null) {
|
|
|
|
|
btnSprite = btnNode.getComponent(cc.Sprite).spriteFrame;
|
|
|
|
|
}
|
|
|
|
|
//开始触摸
|
|
|
|
|
soundName = soundName
|
|
|
|
|
btnNode.on(cc.Node.EventType.TOUCH_START, () => {
|
|
|
|
|
// SoundMgr.playSound_custom(soundName);
|
|
|
|
|
// Common5.getSoundFromBundle_custom("ZoomGame", soundName, false);
|
|
|
|
|
Common5.playEffect(soundName);
|
|
|
|
|
VibrateMgr.vibrateShort_custom();
|
|
|
|
|
if (scaleTime > 0) {
|
|
|
|
|
cc.tween(btnNode).to(scaleTime, { scale: 0.8 }).start();
|
|
|
|
|
}
|
|
|
|
|
if (clickSprite != null) {
|
|
|
|
|
console.log("clickSprite", clickSprite);
|
|
|
|
|
btnNode.getComponent(cc.Sprite).spriteFrame = clickSprite;
|
|
|
|
|
}
|
|
|
|
|
}, this);
|
|
|
|
|
//结束触摸,响应时间
|
|
|
|
|
btnNode.on(cc.Node.EventType.TOUCH_END, () => {
|
|
|
|
|
VibrateMgr.vibrateShort_custom();
|
|
|
|
|
if (scaleTime > 0) {
|
|
|
|
|
cc.tween(btnNode).to(scaleTime, { scale: 1 }).start();
|
|
|
|
|
}
|
|
|
|
|
if (btnSprite != null) {
|
|
|
|
|
btnNode.getComponent(cc.Sprite).spriteFrame = btnSprite;
|
|
|
|
|
}
|
|
|
|
|
if (Common5.isTouching === false) {
|
|
|
|
|
Common5.isTouching = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
callback(btnNode);
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
Common5.isTouching = false;
|
|
|
|
|
}, protectedTime * 1000);
|
|
|
|
|
}
|
|
|
|
|
}, this);
|
|
|
|
|
//退出按钮
|
|
|
|
|
btnNode.on(cc.Node.EventType.TOUCH_CANCEL, () => {
|
|
|
|
|
if (btnSprite != null) {
|
|
|
|
|
btnNode.getComponent(cc.Sprite).spriteFrame = btnSprite;
|
|
|
|
|
}
|
|
|
|
|
if (scaleTime > 0) {
|
|
|
|
|
cc.tween(btnNode).to(scaleTime, { scale: 1 }).start();
|
|
|
|
|
}
|
|
|
|
|
}, this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 得到节点的世界坐标
|
|
|
|
|
* @param node 节点
|
|
|
|
|
*/
|
|
|
|
|
public static getPosInWorld_custom(node: cc.Node) {
|
|
|
|
|
let pos = node.getPosition();
|
|
|
|
|
var newVec3 = node.parent.convertToWorldSpaceAR(pos);
|
|
|
|
|
let returnPos = cc.v2(newVec3.x - cc.winSize.width / 2, newVec3.y - cc.winSize.height / 2)
|
|
|
|
|
return returnPos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 求两个节点的距离
|
|
|
|
|
* @param node0
|
|
|
|
|
* @param node1
|
|
|
|
|
* @returns
|
|
|
|
|
*/
|
|
|
|
|
public static makeNodeDistance_custom(node0: cc.Node, node1: cc.Node) {
|
|
|
|
|
let pos0 = Common5.getPosInWorld_custom(node0);
|
|
|
|
|
let pos1 = Common5.getPosInWorld_custom(node1);
|
|
|
|
|
return Common5.makeDistance(pos0, pos1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 求两点的距离
|
|
|
|
|
*
|
|
|
|
|
* @param pos0 第一个位置
|
|
|
|
|
* @param pos1 第二个位置
|
|
|
|
|
*/
|
|
|
|
|
public static makeDistance(pos0: cc.Vec2, pos1: cc.Vec2) {
|
|
|
|
|
// let dx = Math.abs(pos0.x - pos1.x);
|
|
|
|
|
// let dy = Math.abs(pos0.y - pos1.y);
|
|
|
|
|
var dis = Math.abs(pos0.sub(pos1).mag())//Math.sqrt(Math.pow(dx,2)+Math.pow(dy,2));
|
|
|
|
|
return dis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 求角度,角度为pos0,centerPos,pos1形成的角度
|
|
|
|
|
* @param pos0
|
|
|
|
|
* @param pos1
|
|
|
|
|
* @param centerPos
|
|
|
|
|
*/
|
|
|
|
|
public static makeAngle(pos0: cc.Vec2, pos1: cc.Vec2, centerPos: cc.Vec2) {
|
|
|
|
|
let vec0 = cc.v2(pos0.x - centerPos.x, pos0.y - centerPos.y);
|
|
|
|
|
let vec1 = cc.v2(pos1.x - centerPos.x, pos1.y - centerPos.y);
|
|
|
|
|
//弧度
|
|
|
|
|
var angle = vec1.signAngle(vec0);
|
|
|
|
|
//将弧度转换为欧拉角
|
|
|
|
|
var degree = angle / Math.PI * 180;
|
|
|
|
|
return -degree;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 向量转化成角度
|
|
|
|
|
* @param dirVec
|
|
|
|
|
* @returns
|
|
|
|
|
*/
|
|
|
|
|
public static vectorsToDegress(dirVec: cc.Vec2) {
|
|
|
|
|
let comVec: cc.Vec2 = cc.v2(0, 1); // 水平向上的对比向量
|
|
|
|
|
let radian = dirVec.signAngle(comVec); // 求方向向量与对比向量间的弧度
|
|
|
|
|
let degree = cc.misc.radiansToDegrees(radian); // 将弧度转换为角度
|
|
|
|
|
return -degree;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//从固定数组中随机抽取一个数
|
|
|
|
|
public static getMathInLimitArr_custom(limitArr: number[]) {
|
|
|
|
|
if (limitArr.length < 0) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
let num = Math.floor(Math.random() * limitArr.length);
|
|
|
|
|
return limitArr[num];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//从固定数组中随机抽取一个数组,返回为被选中数组和剩下的数组
|
|
|
|
|
public static getMathArrInLimitArr_custom(limitArr: number[], getCount: number) {
|
|
|
|
|
let returnArr = [];
|
|
|
|
|
for (var i = 0; i < getCount; i++) {
|
|
|
|
|
if (limitArr.length <= 0) {
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
console.log("limitArr.length", limitArr.length);
|
|
|
|
|
let num = Math.floor(Math.random() * limitArr.length);
|
|
|
|
|
returnArr.push(limitArr[num]);
|
|
|
|
|
limitArr.splice(num, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
let obj = {
|
|
|
|
|
"returnArr": returnArr,
|
|
|
|
|
"limitArr": limitArr
|
|
|
|
|
}
|
|
|
|
|
return obj;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 从min到max随机取count个数,包括min,也包括max, min>=max || count<0 || (max-min+1)<count
|
|
|
|
|
* @param min 最小数
|
|
|
|
|
* @param max 最大数
|
|
|
|
|
* @param count 需要的个数
|
|
|
|
|
*/
|
|
|
|
|
public static getRandomNumArr_custom(min: number, max: number, count: number) {
|
|
|
|
|
console.log("min", min, "max", max, "count", count);
|
|
|
|
|
if (min >= max || count < 0 || (max - min + 1) < count) {
|
|
|
|
|
console.log("输入参数有误")
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
//原数组
|
|
|
|
|
var arr = [];
|
|
|
|
|
for (var i = min; i <= max; i++) {
|
|
|
|
|
arr.push(i)
|
|
|
|
|
}
|
|
|
|
|
//输出数组
|
|
|
|
|
var out = [];
|
|
|
|
|
//输出个数-count
|
|
|
|
|
while (out.length < count) {
|
|
|
|
|
var temp = (Math.random() * arr.length) >> 0;
|
|
|
|
|
out.push(arr.splice(temp, 1)[0]);
|
|
|
|
|
}
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 从min到max取随机数,兼容min>=max的情况
|
|
|
|
|
* @param min 最小数
|
|
|
|
|
* @param max 最大数
|
|
|
|
|
*/
|
|
|
|
|
public static getRandomNum(min: number, max: number) {
|
|
|
|
|
let minNumber = Math.min(min, max);
|
|
|
|
|
let maxNumber = Math.max(min, max);
|
|
|
|
|
return Math.floor(Math.random() * (maxNumber - minNumber)) + minNumber;
|
|
|
|
|
}
|
|
|
|
|
// //
|
|
|
|
|
public static showTips_custom(text: string) {
|
|
|
|
|
let canvas = cc.find("Canvas");
|
|
|
|
|
let node = new cc.Node("tips");
|
|
|
|
|
let label = node.addComponent(cc.Label);
|
|
|
|
|
label.string = text;
|
|
|
|
|
label.enableBold = true;
|
|
|
|
|
label.fontSize = 40;
|
|
|
|
|
let outline = node.addComponent(cc.LabelOutline);
|
|
|
|
|
outline.width = 5;
|
|
|
|
|
outline.color = new cc.Color(0, 0, 0, 255);
|
|
|
|
|
canvas.addChild(node);
|
|
|
|
|
node.x = 0;
|
|
|
|
|
node.y = 0;
|
|
|
|
|
this.tipNode = node;
|
|
|
|
|
cc.tween(node).delay(2.5).to(1, { y: 555, opacity: 0 }).call(() => {
|
|
|
|
|
if (this.tipNode != null){
|
|
|
|
|
this.tipNode.removeFromParent();
|
|
|
|
|
this.tipNode.destroy();
|
|
|
|
|
this.tipNode = null;
|
|
|
|
|
}
|
|
|
|
|
}).start();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
public static hideTips_custom(){
|
|
|
|
|
if (this.tipNode != null){
|
|
|
|
|
this.tipNode.removeFromParent();
|
|
|
|
|
this.tipNode.destroy();
|
|
|
|
|
this.tipNode = null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public static showTips_customTime(text: string, delay: number,) {
|
|
|
|
|
let canvas = cc.find("Canvas");
|
|
|
|
|
let node = new cc.Node("tips");
|
|
|
|
|
let label = node.addComponent(cc.Label);
|
|
|
|
|
label.string = text;
|
|
|
|
|
label.enableBold = true;
|
|
|
|
|
label.fontSize = 40;
|
|
|
|
|
label.lineHeight = 50;
|
|
|
|
|
let outline = node.addComponent(cc.LabelOutline);
|
|
|
|
|
outline.width = 5;
|
|
|
|
|
outline.color = new cc.Color(0, 0, 0, 255);
|
|
|
|
|
canvas.addChild(node);
|
|
|
|
|
node.x = 0;
|
|
|
|
|
node.y = 150;
|
|
|
|
|
cc.tween(node).delay(delay).to(1, { y: 555, opacity: 0 }).call(() => {
|
|
|
|
|
node.removeFromParent();
|
|
|
|
|
}).start();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static showTips_customTimeNew(text: string, delay: number, pos) {
|
|
|
|
|
let canvas = cc.find("Canvas");
|
|
|
|
|
let node = new cc.Node("tips");
|
|
|
|
|
let label = node.addComponent(cc.Label);
|
|
|
|
|
label.string = text;
|
|
|
|
|
label.enableBold = false;
|
|
|
|
|
label.fontSize = 40;
|
|
|
|
|
label.lineHeight = 50;
|
|
|
|
|
let outline = node.addComponent(cc.LabelOutline);
|
|
|
|
|
outline.width = 5;
|
|
|
|
|
outline.color = cc.Color.RED;//new cc.Color(0, 0, 0, 255);
|
|
|
|
|
canvas.addChild(node);
|
|
|
|
|
|
|
|
|
|
let y = pos.y + 100;
|
|
|
|
|
|
|
|
|
|
node.x = pos.x;
|
|
|
|
|
node.y = pos.y;
|
|
|
|
|
cc.tween(node).delay(delay).to(1, { y: y, opacity: 0 }).call(() => {
|
|
|
|
|
node.removeFromParent();
|
|
|
|
|
}).start();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 加载resourse文件夹下目录
|
|
|
|
|
* @param url 预制的路径
|
|
|
|
|
* @param parent 预制的父节点
|
|
|
|
|
* @param callback
|
|
|
|
|
*/
|
|
|
|
|
public static addPrefab(url, parent, callback = null) {
|
|
|
|
|
let parentNode = parent
|
|
|
|
|
cc.loader.loadRes(url, (err, prefab) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log('加载预制体错误>:', err)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
var prefabNode = cc.instantiate(prefab);
|
|
|
|
|
prefabNode.parent = parentNode;
|
|
|
|
|
if (callback) {
|
|
|
|
|
callback(prefabNode);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// /**
|
|
|
|
|
// * 获得体力计时器
|
|
|
|
|
// */
|
|
|
|
|
// public static startGetEnergyTimer(){
|
|
|
|
|
// Common5.energyTimerCount = Common5.recoveryTime;
|
|
|
|
|
// Common5.isEnergyInterverRunning = true;
|
|
|
|
|
// let timer = setInterval(function(){
|
|
|
|
|
// if(Common5.energyTimerCount>0){
|
|
|
|
|
// Common5.energyTimerCount--;
|
|
|
|
|
// EventMgr.emitEvent_custom(ryw_Event.ryw_updateEnergyCountTime);
|
|
|
|
|
// }else{
|
|
|
|
|
// Common5.isEnergyInterverRunning = false;
|
|
|
|
|
// let userEnergy = User.getEnergyNum();
|
|
|
|
|
// User.setEnergyNum(userEnergy+1);
|
|
|
|
|
// clearInterval(timer);
|
|
|
|
|
// EventMgr.emitEvent_custom(ryw_Event.ryw_updateEnergyShow);
|
|
|
|
|
// }
|
|
|
|
|
// },1000);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// /**
|
|
|
|
|
// * 开始无限体力倒计时
|
|
|
|
|
// */
|
|
|
|
|
// public static startWuxiantiliCountTimeTimer(){
|
|
|
|
|
// let time = Math.round((new Date()).getTime()/1000);
|
|
|
|
|
// let surplusTimes = User.getWuxiantiliTime()-time;
|
|
|
|
|
// Common5.isEnergyInterverRunning = true;
|
|
|
|
|
// if(Common5.isNoEnergyMode == 0){
|
|
|
|
|
// Common5.isNoEnergyMode = 1;
|
|
|
|
|
// let timer = setInterval(function(){
|
|
|
|
|
// if(surplusTimes>0){
|
|
|
|
|
// EventMgr.emitEvent_custom(ryw_Event.ryw_updateWuxiantiliCountTime);
|
|
|
|
|
// }else{
|
|
|
|
|
// Common5.isEnergyInterverRunning = false;
|
|
|
|
|
// EventMgr.emitEvent_custom(ryw_Event.ryw_updateWuxiantiliCountTime);
|
|
|
|
|
// clearInterval(timer);
|
|
|
|
|
// }
|
|
|
|
|
// },1000);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
public static getSoundFromBundle_custom(bundlename = "subResResources", url: string, isBgm: boolean = false) {
|
|
|
|
|
if (Common5.isMute == true) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let audioclip: cc.AudioClip = null;
|
|
|
|
|
let subres = cc.assetManager.getBundle(bundlename);
|
|
|
|
|
// url = "Sound/Wedding/" + url
|
|
|
|
|
if (subres) {
|
|
|
|
|
subres.load(url, cc.AudioClip, (err, AudioClip: cc.AudioClip) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log('加载音效错误>:', err)
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
// console.log("加载成功:",AudioClip);
|
|
|
|
|
audioclip = AudioClip;
|
|
|
|
|
if (isBgm == true) {
|
|
|
|
|
cc.audioEngine.playMusic(audioclip, true);
|
|
|
|
|
} else {
|
|
|
|
|
let audioID = cc.audioEngine.play(audioclip, false, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
// return audioclip;
|
|
|
|
|
}
|
|
|
|
|
public static getSoundFromBundle_customAutoStop(bundlename = "subResResources", url: string, isBgm: boolean = false) {
|
|
|
|
|
if (Common5.isMute == true) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.audioID != -1) {
|
|
|
|
|
cc.audioEngine.stop(this.audioID);
|
|
|
|
|
this.audioID = -1
|
|
|
|
|
}
|
|
|
|
|
let audioclip: cc.AudioClip = null;
|
|
|
|
|
let subres = cc.assetManager.getBundle(bundlename);
|
|
|
|
|
// url = "Sound/Wedding/" + url
|
|
|
|
|
if (subres) {
|
|
|
|
|
subres.load(url, cc.AudioClip, (err, AudioClip: cc.AudioClip) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log('加载音效错误>:', err)
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
// console.log("加载成功:",AudioClip);
|
|
|
|
|
audioclip = AudioClip;
|
|
|
|
|
if (isBgm == true) {
|
|
|
|
|
cc.audioEngine.playMusic(audioclip, true);
|
|
|
|
|
} else {
|
|
|
|
|
this.audioID = cc.audioEngine.play(audioclip, false, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
// return audioclip;
|
|
|
|
|
}
|
|
|
|
|
public static ReportDY(event, msg) {
|
|
|
|
|
if (AppPlatform.is_TT_GAME_custom()) {
|
|
|
|
|
window["tt"].reportAnalytics(event, {
|
|
|
|
|
type: msg,
|
|
|
|
|
});
|
|
|
|
|
ZYSDK.ZYSDK.reportUserAction(msg);
|
|
|
|
|
}
|
|
|
|
|
if (AppPlatform.is_WECHAT_GAME_custom()) {
|
|
|
|
|
event = event.toLowerCase();
|
|
|
|
|
window["wx"].reportEvent(event, {
|
|
|
|
|
"type": msg,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static ReportDYTime(event, level, times) {
|
|
|
|
|
let eventStr = level + '-time-' + Math.round(times / 60)
|
|
|
|
|
if (AppPlatform.is_TT_GAME_custom()) {
|
|
|
|
|
window["tt"].reportAnalytics(event, {
|
|
|
|
|
"type": eventStr,
|
|
|
|
|
});
|
|
|
|
|
ZYSDK.ZYSDK.reportUserAction(eventStr);
|
|
|
|
|
}
|
|
|
|
|
if (AppPlatform.is_WECHAT_GAME_custom()) {
|
|
|
|
|
event = event.toLowerCase();
|
|
|
|
|
window["wx"].reportEvent(event, {
|
|
|
|
|
"type": eventStr,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static stopMusic() {
|
|
|
|
|
cc.audioEngine.stopAll();
|
|
|
|
|
}
|
|
|
|
|
public static playEffect(music) {
|
|
|
|
|
if (this.isNoEffect) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.getSoundFromBundle_custom("ZoomGame", "Sounds/" + music, false);
|
|
|
|
|
}
|
|
|
|
|
public static playEffectCustom(bundle, music) {
|
|
|
|
|
if (this.isNoEffect) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.getSoundFromBundle_customAutoStop(bundle, music, false);
|
|
|
|
|
}
|
|
|
|
|
public static playMusic(music, bundlename = 'ZoomGame') {
|
|
|
|
|
if (this.isNoMusic) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.getSoundFromBundle_custom(bundlename, "Sounds/" + music, true);
|
|
|
|
|
}
|
|
|
|
|
public static playMusicCustom(bundle, music) {
|
|
|
|
|
if (this.isNoMusic) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.getSoundFromBundle_custom(bundle, music, true);
|
|
|
|
|
}
|
|
|
|
|
public static getSpriteFrameFromBundle(bundlename = "subResAddMode", url: string, targetSprite: cc.Sprite = null, callback = null) {
|
|
|
|
|
let subres = cc.assetManager.getBundle(bundlename);
|
|
|
|
|
if (subres) {
|
|
|
|
|
subres.load(url, cc.SpriteFrame, (err, sprite: cc.SpriteFrame) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log('加载Sprite错误>:', err)
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
//console.log("加载成功:", sprite);
|
|
|
|
|
if (targetSprite != null) {
|
|
|
|
|
targetSprite.spriteFrame = sprite;
|
|
|
|
|
}
|
|
|
|
|
if (callback) {
|
|
|
|
|
callback(sprite);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @param bundlename 分包名
|
|
|
|
|
* @param url 预制体地址
|
|
|
|
|
* @param parentNode 父节点
|
|
|
|
|
* @param callback 回调函数
|
|
|
|
|
*/
|
|
|
|
|
public static getPrefabFromBundle(bundlename = "subRes_resources", url: string, parentNode: cc.Node = null, callback = null) {
|
|
|
|
|
let subres = cc.assetManager.getBundle(bundlename);
|
|
|
|
|
if (subres) {
|
|
|
|
|
subres.load(url, cc.Prefab, (err, prefab: cc.Prefab) => {
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log('加载预制体错误>:', err);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
console.log("加载成功:", prefab.name);
|
|
|
|
|
var prefabNode = cc.instantiate(prefab);
|
|
|
|
|
if (parentNode != null) {
|
|
|
|
|
parentNode.addChild(prefabNode)
|
|
|
|
|
} else {
|
|
|
|
|
cc.director.getScene().getChildByName("Canvas").addChild(prefabNode);;
|
|
|
|
|
}
|
|
|
|
|
// prefabNode.parent = parentNode;
|
|
|
|
|
if (callback) {
|
|
|
|
|
callback(prefabNode);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static getJsonFromBundle(bundlename = "subRes_resources", url: string, callback) {
|
|
|
|
|
let subres = cc.assetManager.getBundle(bundlename);
|
|
|
|
|
if (subres) {
|
|
|
|
|
subres.load(url, cc.JsonAsset, (err, essest: cc.JsonAsset)=>{
|
|
|
|
|
if (err) {
|
|
|
|
|
console.log('加载json错误>:', err);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//console.log('加载json>:', bundlename, essest);
|
|
|
|
|
callback(essest)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//随机排序数组
|
|
|
|
|
public static shuffle(arr) {
|
|
|
|
|
var len = arr.length;
|
|
|
|
|
let setran = []
|
|
|
|
|
for (var i = len - 1; i >= 0; i--) {
|
|
|
|
|
var rand = Math.floor(Math.random() * (arr.length - 0.01));
|
|
|
|
|
console.log("rand===", rand)
|
|
|
|
|
setran.push(arr[rand]);
|
|
|
|
|
arr.splice(rand, 1);
|
|
|
|
|
}
|
|
|
|
|
return setran;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//对数组进行分组
|
|
|
|
|
public static groupingArr(targetArr: number[], groupCount: number) {
|
|
|
|
|
let returnArr = [];
|
|
|
|
|
for (var i = 0; i < groupCount; i++) {
|
|
|
|
|
if (targetArr.length > 0) {
|
|
|
|
|
let mathIndex = Math.floor(Math.random() * targetArr.length);
|
|
|
|
|
returnArr[i] = [targetArr[mathIndex]];
|
|
|
|
|
targetArr.splice(mathIndex, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (targetArr.length > 0) {
|
|
|
|
|
for (var i = 0; i < targetArr.length; i++) {
|
|
|
|
|
|
|
|
|
|
let mathIndex = Math.floor(Math.random() * returnArr.length);
|
|
|
|
|
if (returnArr[mathIndex].length == 1) {
|
|
|
|
|
returnArr[mathIndex].push(targetArr[i]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
console.log("---returnArr+++", returnArr)
|
|
|
|
|
return returnArr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static parabolaFunc(parabolaNode: cc.Node, startPos: cc.Vec2, endPos: cc.Vec2, height: number, time: number, func: Function = null) {
|
|
|
|
|
//抛物线运动,从起点到终点
|
|
|
|
|
let controlPos = cc.v2((startPos.x + endPos.x) / 2, ((startPos.y + endPos.y) / 2 + height));
|
|
|
|
|
cc.tween(parabolaNode).bezierTo(time, startPos, controlPos, endPos).call(() => {
|
|
|
|
|
if (func != null) {
|
|
|
|
|
func();
|
|
|
|
|
}
|
|
|
|
|
}).start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取节点在目标节点(容器)下的相对位置
|
|
|
|
|
* @param node 当前节点
|
|
|
|
|
* @param container 目标节点(容器)
|
|
|
|
|
* @param pos 当前节点上的位置(可选)
|
|
|
|
|
*/
|
|
|
|
|
public static getRelativePosition(node: cc.Node, container: cc.Node, pos?: cc.Vec2): cc.Vec2 {
|
|
|
|
|
let vpos = pos || cc.Vec2.ZERO;
|
|
|
|
|
const worldPos = node.convertToWorldSpaceAR(vpos);
|
|
|
|
|
return container.convertToNodeSpaceAR(worldPos);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// update (dt) {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 创建一个预制体
|
|
|
|
|
* @param prefab 预制体
|
|
|
|
|
* @param parent 接收的父节点 为null 则放到场景中 场景必须要有 Canvas 节点
|
|
|
|
|
*/
|
|
|
|
|
public static createPrefab_custom(prefab: cc.Prefab, parent?: cc.Node,) {
|
|
|
|
|
let node = cc.instantiate(prefab);
|
|
|
|
|
if (parent) {
|
|
|
|
|
// parent.addChild(node);
|
|
|
|
|
node.parent = parent
|
|
|
|
|
} else {
|
|
|
|
|
cc.find('Canvas').addChild(node, 0);
|
|
|
|
|
}
|
|
|
|
|
return node;
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* 打乱一个数组
|
|
|
|
|
* @param arr 数组
|
|
|
|
|
*/
|
|
|
|
|
public static randFun_custom(arr) {
|
|
|
|
|
for (let i = 0, len = arr.length; i < len; i++) {
|
|
|
|
|
let index = Math.floor(Math.random() * (len - 1));
|
|
|
|
|
let tempValue = arr[i];
|
|
|
|
|
arr[i] = arr[index];
|
|
|
|
|
arr[index] = tempValue;
|
|
|
|
|
}
|
|
|
|
|
return arr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* !#zh 矩形目标是否包含当前节点。
|
|
|
|
|
* @param rectTargetNode 矩形目标节点
|
|
|
|
|
* @param curNode 当前节点
|
|
|
|
|
*/
|
|
|
|
|
public static checkContainsNode(rectTargetNode: cc.Node, curNode: cc.Node) {
|
|
|
|
|
let pworld = rectTargetNode.getBoundingBoxToWorld()
|
|
|
|
|
let pos1 = curNode.convertToWorldSpaceAR(cc.Vec2.ZERO)
|
|
|
|
|
if (pworld.contains(pos1)) {
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* !#zh 矩形目标是否包含当前节点。
|
|
|
|
|
* @param rectTargetNode 矩形目标节点
|
|
|
|
|
* @param curNode 当前节点
|
|
|
|
|
*/
|
|
|
|
|
public static checkContainsPos(rectTargetNode: cc.Node, pos1: cc.Vec2) {
|
|
|
|
|
let pworld = rectTargetNode.getBoundingBoxToWorld()
|
|
|
|
|
//let pos1 = curNode.convertToWorldSpaceAR(cc.Vec2.ZERO)
|
|
|
|
|
if (pworld.contains(pos1)) {
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* !#zh 当前矩形与目标矩形是否相交。
|
|
|
|
|
* @param curRectNode 当前矩形节点
|
|
|
|
|
* @param targetRectNode 目标矩形节点
|
|
|
|
|
*/
|
|
|
|
|
public static checkIntersectsBox(curRectNode: cc.Node, targetRectNode: cc.Node): boolean {
|
|
|
|
|
let pworld = curRectNode.getBoundingBoxToWorld()
|
|
|
|
|
let box1 = targetRectNode.getBoundingBoxToWorld()
|
|
|
|
|
if (pworld.intersects(box1)) {
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 将当前节点移动到为目标节点的位置
|
|
|
|
|
* @param curNode 当前节点
|
|
|
|
|
* @param targetNode 目标节点
|
|
|
|
|
*/
|
|
|
|
|
public static setNodeToTargetPos(curNode, targetNode) {
|
|
|
|
|
//目标节点的本地坐标
|
|
|
|
|
let targetLocalPos = targetNode.getPosition()
|
|
|
|
|
//目标节点的世界坐标
|
|
|
|
|
let targetWorldPos = targetNode.parent.convertToWorldSpaceAR(targetLocalPos)
|
|
|
|
|
|
|
|
|
|
//目标节点相对于当前节点父节点的本地坐标
|
|
|
|
|
let localPos = curNode.parent.convertToNodeSpaceAR(targetWorldPos)
|
|
|
|
|
curNode.setPosition(localPos)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static getNodeToTargetPos(curNode, targetNode) {
|
|
|
|
|
//目标节点的本地坐标
|
|
|
|
|
let targetLocalPos = targetNode.getPosition()
|
|
|
|
|
//目标节点的世界坐标
|
|
|
|
|
let targetWorldPos = targetNode.parent.convertToWorldSpaceAR(targetLocalPos)
|
|
|
|
|
|
|
|
|
|
//目标节点相对于当前节点父节点的本地坐标
|
|
|
|
|
let localPos = curNode.parent.convertToNodeSpaceAR(targetWorldPos)
|
|
|
|
|
return localPos
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//深拷贝
|
|
|
|
|
public static deepClone = <T>(origin: T, target?: Record<string, any> | T): T => {
|
|
|
|
|
// 判断是否为数组
|
|
|
|
|
let isArr = (origin: any): boolean => {
|
|
|
|
|
let str = '[object Array]'
|
|
|
|
|
return Object.prototype.toString.call(origin) == str ? true : false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let tar = target || []
|
|
|
|
|
|
|
|
|
|
for (const key in origin) {
|
|
|
|
|
if (Object.prototype.hasOwnProperty.call(origin, key)) {
|
|
|
|
|
if (typeof origin[key] === 'object' && origin[key] !== null) {
|
|
|
|
|
tar[key.toString()] = isArr(origin[key]) ? [] : {}
|
|
|
|
|
Common5.deepClone(origin[key], tar[key.toString()])
|
|
|
|
|
} else {
|
|
|
|
|
tar[key.toString()] = origin[key]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tar as T
|
|
|
|
|
}
|
|
|
|
|
public static formatNumber(num) {
|
|
|
|
|
let str = ""
|
|
|
|
|
if (num >= 100000000) {
|
|
|
|
|
str = num / 100000000 + "亿"
|
|
|
|
|
} else if (num >= 10000) {
|
|
|
|
|
str = num / 10000 + "万"
|
|
|
|
|
}
|
|
|
|
|
return str
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|