Qt for WebAssembly 在浏览器中运行Qt应用程序
https://wiki.qt.io/Qt_for_WebAssembly
安装 Emscripten SDK
从GitHub下载emsdk
https://github.com/emscripten-core/emsdk
Qt版本和Emscripten版本的对应关系参考文首的链接。
安装1.38.27版本的Emscripten
1 | ./emsdk install sdk-fastcomp-1.38.27-64bit |
编译Qt源代码
下载Qt5.14源代码http://download.qt.io/archive/qt/
配置源代码
1 | ./configure -xplatform wasm-emscripten -nomake examples -prefix $PWD/qtbase |
Google软件测试之道
《Google软件测试之道》笔记
在Google,软件测试团队归属于一个被称为“工程生产力”的中心组织部门,这个部门的职责横跨开发测试人员使用工具的研发、产品发布和各种级别的测试,从单元级别的测试到探索性级别的测试。
Google是一家以创新和速度为基础的公司,快速地发布有用的代码(如果失败,也只有少数早期用户会失望)、迭代地增加早期用户希望使用的功能(最大化用户反馈)。
在整个公司,我们只有非常少的专职测试人员。
Google的测试团队并非雄兵百万,我们更像是小而精的特种部队。
测试人员的稀缺会导致测试资源变得非常昂贵,因此,我们的原则就是让这些稀缺且聪明的测试员工保持昂扬的斗志和充沛的精力。
Qt的自动化测试脚本test.pl
1 | #!/usr/bin/env perl |
编译Linux内核源码的过程中发生的故事
目的
构建环境,学习 《Linux设备驱动程序》 《Linux内核设计与实现》
Linux环境
Fedora 24,内核版本4.5.5。
Linux 4.5.5-300.fc24.x86_64
下载内核源码
从https://www.kernel.org下载了4.19.128版本。
内核配置
使用make help
查看所有make选项。
可以使用不同的方法进行配置,比如make config
、make menuconfig
、make xconfig
等。
Liberators
!!!
!!!归并排序
《算法(第4版)》笔记
归并
归并排序基于“归并”这个简单的操作,即将两个有序的数组归并成一个更大的有序数组。
要将一个数组排序,可以先(递归地)将它分成两半分别排序,然后将结果归并起来。
1 | // c++ |
初级排序算法
《算法(第4版)》笔记
选择排序
首先,找到数组中最小的那个元素,其次,将它和数组的第一个元素交换位置(如果第一个元素就是最小元素那么它就和自己交换)。再次,在剩下的元素中找到最小的元素,将它与数组的第二个元素交换位置。如此往复,直到将整个数组排序。这种方法叫做选择排序,因为它在不断地选择剩余元素之中的最小者。
选择排序的缺点:一个已经有序的数组或是主键全部相等的数组和一个元素随机排列的数组所用的排序时间竟然一样长。
1 | // c++ |
SDL2 笔记
《SDL Game Development》笔记
坐标系
原点:左上角
SDL扩展
SDL_image
支持多种格式图片加载:BMP GIF PNG TGA PCX …
SDL_net
跨平台网络库
SDL_mixer
audio mixer library. 支持MP3 MIDI OGG
SDL_ttf
支持TrueType字体
SDL_rtf
support the rendering of the Rich Text Format (RTF).
SDL_Init()
初始化标识
1 | SDL_INIT_HAPTIC Force feedback subsystem 力反馈 |
查看一个子系统是否已被初始化:
1 | if (SDL_WasInit(SDL_INIT_VIDEO) != 0) |
1 | SDL_CreateRenderer() |
游戏程序结构
初始化
游戏循环:获取输入 物理运算 渲染
退出
window flags
1 | SDL_WINDOW_FULLSCREEN Make the window fullscreen |
程序基本结构
1 | #include <SDL.h> |
绘制图片过程
- 加载图片获得SDL_Surface
- 根据Surface获得SDL_Texture
- 获得纹理尺寸:SDL_QueryTexture
- 渲染:SDL_RenderCopy/SDL_RenderCopyEx 需要Renderer参数
SDL使用两种数据结构渲染到屏幕
SDL_Surface 像素集 使用软件渲染(not GPU)
SDL_Texture 使用硬件加速
1 | SDL_Texture* m_pTexture |
源矩形 目标矩形 参数传入0 将整个纹理渲染到整个窗口。
SDL_GetTicks() 毫秒
SDL_RenderCopyEx() 支持旋转和翻转Flip
SDL_image
sdl2_image.lib
1 | #include <sdl_image.h> |
Fixed frames per second (FPS) is
not necessarily always a good option, especially when your game includes more
advanced physics. It is worth bearing this in mind when you move on from this
book and start developing your own games. Fixed FPS will, however, be fine for
the small 2D games, which we will work towards in this book.
固定帧频
1 | const int FPS = 60; |
1 | SDL joystick event |
不同的游戏控制器 按钮和轴可能有不同的值 比如Xbox360 controller, PS3 controller
Xbox360 controller:
Two analog sticks
Analog sticks press as buttons
Start and Select buttons
Four face buttons: A, B, X, and Y
Four triggers: two digital and two analog
A digital directional pad
1 | if (SDL_WasInit(SDL_INIT_JOYSTICK) == 0) |
分辨是哪个控制器的事件
1 | if (event.type == SDL_JOYAXISMOTION) |
控制器按钮
SDL_JoystickNumButtons
event.jbutton.button // 按钮ID
鼠标事件
1 | SDL Mouse Event Purpose |
1 | // 鼠标按钮 |
event.type SDL_MOUSEMOTION
event.motion.x
event.motion.y
// 键盘
1 表示按下 0 表示没有按下
SDL_GetKeyboardState(int* numkeys)
Uint8* m_keystates;
m_keystates = SDL_GetKeyboardState(0);
SDL_Scancode key;
if (m_keysttes[key] == 1)
有限状态机
需要能够处理以下情况:
Removing one state and adding another
Adding one state without removing the previous state
Removing one state without adding another
Game
GameObject
TextureManager // 负责加载图片文件,负责绘制,纹理ID
InputHandler
GameState
GameStateMachine
GameObjectFactory
StateParser
Distributed Factory
class GameObjectFactory
std::map<std::string, BaseCreator*> m_creators;
registerType(std::string typeID, BaseCreator* pCreator);
https://github.com/ReneNyffenegger/development_misc/tree/master/base64.
The base64.h and base64.cpp files can be added directly to the project.
1 | SDL_Mixer |
SDL_SetTextureAlphaMod()
SDL 笔记
开发环境配置
http://tjumyk.github.io/sdl-tutorial-cn/contents.html
VS 新建项目选择控制台程序,链接属性中选择子系统“/SUBSYSTEM:WINDOWS”。
在屏幕上显示一张图片
1 | #include <SDL/SDL.h> |