Welcome![Sign In][Sign Up]
Location:
Search - lev

Search list

[OpenGL programeplan

Description: E战机是我花了几个月做的一个简单飞机游戏引擎,目前它支持,自定义资源,自定义单位,编辑关卡等功能! 因为我不是很懂OpenGL所以目前本游戏~还是使用GUI绘图~ 对CPU的~要求比较高~ 而且~OpenGL的纹理不是支持任何尺寸的图片~ 文件说明 Reslist.gam 游戏资源文件 游戏所需要的图片资源都在这里定义~ 目前它还是以文本形式保存的 WAV.txt 游戏声音资源文件~ 游戏里面用到的声音都在这里~ 也是文本保存 UnitX.txt 单位定义文件 所有游戏单位的定义都在这里~ 包括自己的飞机~ 子弹 敌人~等等~ 敌人如何行动也是在这里定义的 Level.lev 游戏关卡文件 保存了游戏关卡数据文件 使用以上4个文件 你就能做出你自己的飞机游戏了~~ 你也可以试着把这个未完成的关卡完成~ 目前地图编辑器正在开发中~~ ========================= 控制说明 发射子弹 空格 Ctrl 炸弹 方向键 控制行动 ========================= -- 其他功能继续完善中 -- -E. fighters is I spent a few months to do a simple game engine aircraft, which currently support from the definition of resources, Since the definition of units, editing functions such as hurdles! I do not really understand them because currently the OpenGL games or use GUI ~ ~ drawing on the CPU requests than ~ ~ ~ and higher OpenGL texture is not in support of any size photo-documented Reslist.g am documents game game resources needed resources are pictures here - definition version of the current form it is the preservation of WA V.txt game voice resource documents game inside-the voices are used in the text is here ~ UnitX preservation. txt units definition files all game units in the definition here - including its own aircraft bullets enemies ~ ~ ~ enemy, etc. How can people in actio
Platform: | Size: 652427 | Author: 杨明 | Hits:

[OtherAHP1.1

Description: 系统工程-层次分析法VB版- Systems engineering - level analytic method VB version -system-level analysis VB version - Systems engineering-lev el analytic method VB version
Platform: | Size: 251656 | Author: yuan | Hits:

[Software EngineeringVariable-structure-systems-with-sliding-modes

Description: 俄亥俄州立大学滑模控制创始人Utkin教授最经典的一篇文章 滑模控制的奠基性文章-sliding Ohio State University Professor Lev control of the founders of a classic article sliding control of the foundation an article
Platform: | Size: 1071123 | Author: 赵思明 | Hits:

[Other resource操作系统实验教程核心技术与编程实例

Description: 本书向读者展示了如何自己动手编写一个简化的32位保护模式操作系统,涉及了现代操作系统的主要技术。本书以编写操作系统为主线索,讨论了存储管理、基本I/O操作与图形界面、中断与系统调用、进程管理、设备管理(以IDE磁盘为例)、文件系统(FAT16为例)、系统引导与系统初始化等方面程序实现的技术问题,给出了操作系统实验和课程设计的内容,并提供了参考程序的清单及详细的注释。这些内容不仅对学习操作系统的学生有帮助,而且对从事底层软件开发、学习保护模式汇编编程与C语言编程的人员也非常有用。 本书可供高等院校开设操作系统课程的有关专业作为实践教材,亦可供广大计算机应用人员、软件设计人员参考和使用。-the book to show readers how to make their own preparation of a simplified 32 protected mode operating system, involved in a modern operating system, the main techniques. The book mainly for the preparation of the operating system clues to discuss the storage management and basic I / O operation and graphical interface, and the interruption of system calls, process management, equipment management (IDE disk for example). file system (FAT16 example), the boot and system initialization procedures and other aspects of the realization of technical problems, Experimental given operating system and the content of the curriculum design, and provide a reference list and the procedures detailed in the Notes. These elements not only to study the system to help students, but also to engage in low-lev
Platform: | Size: 4491204 | Author: 汤杰 | Hits:

[ELanguagepl/0

Description: /*PL/0编译系统C版本头文件pl0.h*/ /* typedef enum { false, true } bool; */ #define norw 13 /*关键字个数*/ #define txmax 100 /*名字表容量*/ #define nmax 14 /*number的最大位数*/ #define al 10 /*符号的最大长度*/ #define amax 2047 /*地址上界*/ #define levmax 3 /*最大允许过程嵌套声明层数[0,levmax]*/ #define cxmax 200 /*最多的虚拟机代码数*/ /*符号*/ enum symbol{ nul, ident, number, plus, minus, times, slash, oddsym, eql, neq, lss, leq, gtr, geq, lparen, rparen, comma, semicolon, period, becomes, beginsym, endsym, ifsym, thensym, whilesym, writesym, readsym, dosym, callsym, constsym, varsym, procsym, }; #define symnum 32 /*名字表中的类型*/ enum object{ constant, variable, procedur, }; /*虚拟机代码*/ enum fct{ lit, opr, lod, sto, cal, inte, jmp, jpc, }; #define fctnum 8 /*虚拟机结构代码*/ struct instruction { /*454*/ enum fct f; // 虚拟机代码指令 int l; //引用层与声明层的层次差 int a; //根据f的不同而不同 }; FILE * fas; //输出名字表 FILE * fa; //输出虚拟机代码 FILE * fa1; //输出源文件及其各行对应的首地址 FILE * fa2; //输出结果 bool listswitch; //显示虚拟机代码与否 bool tableswitch; //显示名字与否 char ch; //获取字符的缓冲区,getch使用 enum symbol sym; //当前的符号 char id[al+1]; //当前ident,多出的一个字节用于存放0 int num; //当前number int cc,ll; //getch使用的计数器,cc表示当前字符(ch)的位置 int cx; //虚拟机代码指针,取值范围[0,cxmax-1] char line[81]; //读取行缓冲区 char a[al+1]; //临时符号,多出的一个字节用于存放0 struct instruction code[cxmax]; //存放虚拟机代码的数组 char word[norw][al]; //保留字 enum symbol wsym[norw]; //保留字对应的符号值 enum symbol ssym[256]; //单字符的符号值 char mnemonic[fctnum][5]; //虚拟机代码指令名称 bool declbegsys[symnum]; //表示声明开始的符号集合 bool statbegsys[symnum]; //表示语句开始的符号集合 bool facbegsys[symnum]; //表示因子开始的符号集合 //名字表结构 struct tablestruct { char name[al]; //名字 enum object kind; //类型:const,var,array or procedure int val; //数值,仅const使用 int level; //所须层,仅const不能用 int adr; //地址,仅const不能用 int size; //需要分配的数据空间,仅procedure使用 }; struct tablestruct table[txmax]; //名字表 FILE * fin; FILE * fout; char fname[al]; int err; //错误计数器 //当函数中发生fatal error时,返回-1告知调用它的函数,最终退出程序 #define getsymdo if(-1==getsym()) return -1 #define getchdo if(-1==getch()) return -1 #define testdo(a,b,c) if(-1==test(a,b,c)) return -1 #define gendo(a,b,c) if(-1==gen(a,b,c)) return -1 #define expressiondo(a,b,c) if(-1==expression(a,b,c)) return -1 #define factordo(a,b,c) if(-1==factor(a,b,c)) return -1 #define termdo(a,b,c) if(-1==term(a,b,c)) return -1 #define conditiondo(a,b,c) if(-1==condition(a,b,c)) return -1 #define statementdo(a,b,c) if(-1==statement(a,b,c)) return -1 #define constdeclarationdo(a,b,c) if(-1==constdeclaration(a,b,c)) return -1 #define vardeclarationdo(a,b,c) if(-1==vardeclaration(a,b,c)) return -1 void error(int n); int getsym(); int getch(); void init(); int gen(enum fct x,int y ,int z); int test(bool *s1,bool *s2,int n); int inset(int e,bool *s); int addset(bool *str,bool * s1,bool * s2,int n); int subset(bool *str,bool * s1,bool * s2,int n); int mulset(bool *str,bool * s1,bool * s2,int n); int block(int lev,int tx,bool * fsys); void interpret(); int factor(bool * fsys,int * ptx,int lev); int term(bool * fsys,int * ptx,int lev); int condition(bool * fsys,int * ptx,int lev); int expression(bool * fsys,int * ptx,int lev); int statement(bool * fsys,int * ptx,int lev); void listcode(int cx0); int vardeclaration(int *ptr, int lev,int *ptx); int constdeclaration(int *ptr, int lev,int *ptx); int position(char * idt,int tx); void enter(enum object k,int * ptx,int lev, int * pdx); int base(int l,int * s,int b)
Platform: | Size: 25139 | Author: xqq771084591 | Hits:

[OpenGL programeplan

Description: E战机是我花了几个月做的一个简单飞机游戏引擎,目前它支持,自定义资源,自定义单位,编辑关卡等功能! 因为我不是很懂OpenGL所以目前本游戏~还是使用GUI绘图~ 对CPU的~要求比较高~ 而且~OpenGL的纹理不是支持任何尺寸的图片~ 文件说明 Reslist.gam 游戏资源文件 游戏所需要的图片资源都在这里定义~ 目前它还是以文本形式保存的 WAV.txt 游戏声音资源文件~ 游戏里面用到的声音都在这里~ 也是文本保存 UnitX.txt 单位定义文件 所有游戏单位的定义都在这里~ 包括自己的飞机~ 子弹 敌人~等等~ 敌人如何行动也是在这里定义的 Level.lev 游戏关卡文件 保存了游戏关卡数据文件 使用以上4个文件 你就能做出你自己的飞机游戏了~~ 你也可以试着把这个未完成的关卡完成~ 目前地图编辑器正在开发中~~ ========================= 控制说明 发射子弹 空格 Ctrl 炸弹 方向键 控制行动 ========================= -- 其他功能继续完善中 -- -E. fighters is I spent a few months to do a simple game engine aircraft, which currently support from the definition of resources, Since the definition of units, editing functions such as hurdles! I do not really understand them because currently the OpenGL games or use GUI ~ ~ drawing on the CPU requests than ~ ~ ~ and higher OpenGL texture is not in support of any size photo-documented Reslist.g am documents game game resources needed resources are pictures here- definition version of the current form it is the preservation of WA V.txt game voice resource documents game inside-the voices are used in the text is here ~ UnitX preservation. txt units definition files all game units in the definition here- including its own aircraft bullets enemies ~ ~ ~ enemy, etc. How can people in actio
Platform: | Size: 652288 | Author: 杨明 | Hits:

[Software EngineeringVariable-structure-systems-with-sliding-modes

Description: 俄亥俄州立大学滑模控制创始人Utkin教授最经典的一篇文章 滑模控制的奠基性文章-sliding Ohio State University Professor Lev control of the founders of a classic article sliding control of the foundation an article
Platform: | Size: 1071104 | Author: 赵思明 | Hits:

[VC/MFCosexpertutorialkerneltech.ccrun.491204

Description: 本书向读者展示了如何自己动手编写一个简化的32位保护模式操作系统,涉及了现代操作系统的主要技术。本书以编写操作系统为主线索,讨论了存储管理、基本I/O操作与图形界面、中断与系统调用、进程管理、设备管理(以IDE磁盘为例)、文件系统(FAT16为例)、系统引导与系统初始化等方面程序实现的技术问题,给出了操作系统实验和课程设计的内容,并提供了参考程序的清单及详细的注释。这些内容不仅对学习操作系统的学生有帮助,而且对从事底层软件开发、学习保护模式汇编编程与C语言编程的人员也非常有用。 本书可供高等院校开设操作系统课程的有关专业作为实践教材,亦可供广大计算机应用人员、软件设计人员参考和使用。-the book to show readers how to make their own preparation of a simplified 32 protected mode operating system, involved in a modern operating system, the main techniques. The book mainly for the preparation of the operating system clues to discuss the storage management and basic I/O operation and graphical interface, and the interruption of system calls, process management, equipment management (IDE disk for example). file system (FAT16 example), the boot and system initialization procedures and other aspects of the realization of technical problems, Experimental given operating system and the content of the curriculum design, and provide a reference list and the procedures detailed in the Notes. These elements not only to study the system to help students, but also to engage in low-lev
Platform: | Size: 4491264 | Author: 汤杰 | Hits:

[OtherMPEG-4

Description: MPEG4的介绍,说明了MPEG4的组成,Tools,Object,Profile,Level等-Introduction of MPEG4, MPEG4 illustrates the composition, Tools, Object, Profile, Level, etc.
Platform: | Size: 495616 | Author: zhaolei | Hits:

[source in ebooklabview_analyze

Description: Labview 分析篇书籍的源码 介绍讯号如何产生如何进行FFT-Labview source analysis articles books introduce how to generate signals how the FFT
Platform: | Size: 356352 | Author: box | Hits:

[Linux-Unixlev00_2.45c.tar

Description: 已经编译好的levoo程序,用于vasp结果分析。已经编译好的levoo程序,用于vasp结果分析。-Levoo procedures have been compiled for analysis of VASP results. Levoo procedures have been compiled for analysis of VASP results.
Platform: | Size: 4245504 | Author: samuel | Hits:

[matlabnle

Description: amer s noise level estimation implementation on MATLAB
Platform: | Size: 4096 | Author: eric | Hits:

[matlabsoftthreshold_Bayes

Description: The function apply soft thresholding to wavelet coefficients at decomposition level lev calculating the threshold adapted to the various sub-bands-The function apply soft thresholding to wavelet coefficients at decomposition level lev calculating the threshold adapted to the various sub-bands
Platform: | Size: 1024 | Author: Marcella | Hits:

[JSP/Javacuj_jni

Description: JNI – C++ integration made easy Evgeniy Gabrilovich(gabr@acm.org) Lev Finkelstein(lev@zapper.com)
Platform: | Size: 61440 | Author: Kyoung Rok, Hwang | Hits:

[File Operatelibewf-20120304.tar

Description: Libewf是用于支持Expert Witness Compression Format (EWF)的库,同时也支持SMART(EWF-S01)和EnCase(EWF-E01)格式。Libewf同时也允许你读,写EWF文件。最近的版本同时支持 LEV (EWF-L01)文件格式。-Libewf is a library for support of the Expert Witness Compression Format (EWF), it support both the SMART (EWF-S01) and EnCase (EWF-E01) format. Libewf allows you to read and write EWF files. Recent versions also support the LEV (EWF-L01) format.
Platform: | Size: 1541120 | Author: qwerasd | Hits:

[matlablev

Description: this function file is very usefull for mle program and its contained functions only
Platform: | Size: 1024 | Author: BEEMA | Hits:

[matlabmy_de_dwt2

Description: 使用小波变换去噪,小波母函数选择 sym4 ,lev默认值为8,一般为8级小波去噪, par 为 CDF系数,通常取0.9,signal 列向量。取噪声信号范围,对分解的第lev层到第1层的高频系数进行重构。查看滤波后信号和噪声的小波分量-Wavelet transform denoising, the mother wavelet select ' sym4' , the lev default value is 8, is generally 8 wavelet de-noising, par for the CDF coefficient, usually taken 0.9 Signal column vector. Take the noise signal to be reconstructed on decomposition lev layer to the first layer of high-frequency coefficients. View the filtered signal and noise wavelet components
Platform: | Size: 1024 | Author: 杨红岩 | Hits:

[ELanguageproj1-Lev-Wainstein

Description: code uses open cv to maximize the process of converting an video file to gray
Platform: | Size: 9216 | Author: Lev Ariel Wainstein | Hits:

[OtherFuzzy-Network-Analysis-for-Projects-with-High-Lev

Description: Fuzzy Network Analysis for Projects with High Level of Risks – Uncertainty in Time and Structure
Platform: | Size: 411648 | Author: matlabprogrammer | Hits:

[Communication-Mobileasn1c-0.9.28.tar

Description: 好用的asn解码器 选项: ??-E只运行ASN.1解析器并打印出树 ??-F在-E操作期间,还执行树固定 ??-P连接并打印编译的文本 ??-R限制输出(仅限表,不支持代码)(ASN.1 Compiler, v0.9.28 Copyright (c) 2003-2016 Lev Walkin <vlm@lionet.info>)
Platform: | Size: 1622016 | Author: wgy123456 | Hits:

CodeBus www.codebus.net