Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-02-17 | Disable laser for sniper rifle | Nguyễn Gia Phong | |
360 no scope are only for those worthy. | |||
2022-02-06 | Only draw laser when it is possible to shoot | Nguyễn Gia Phong | |
2022-02-06 | Move tackling to separate function | Nguyễn Gia Phong | |
2022-02-02 | Separate player's close range attack handling | Nguyễn Gia Phong | |
2022-02-02 | Restore respawning off-vision NPC | Nguyễn Gia Phong | |
2022-02-01 | Simplify NPC spawning | Nguyễn Gia Phong | |
2022-01-31 | Move person collision to separate function | Nguyễn Gia Phong | |
2022-01-30 | Move nextLevel to own function | Nguyễn Gia Phong | |
2022-01-15 | Bump to 2.4.7 2.4.7 | Nguyễn Gia Phong | |
2022-01-15 | Port to Zig 0.9 | Nguyễn Gia Phong | |
2021-12-11 | Make Camera.h compatible with C | Nguyễn Gia Phong | |
2021-12-11 | Covert misc Game methods to C 2.4.6 | Nguyễn Gia Phong | |
2021-12-11 | Make Camera compatible with C | Nguyễn Gia Phong | |
2021-12-11 | Test and fix C-compat for Quarternions.h | Nguyễn Gia Phong | |
2021-12-10 | Improve PRNG seed | Nguyễn Gia Phong | |
2021-12-09 | Make XYZ C-compatible | Nguyễn Gia Phong | |
2021-12-02 | Remove unused math functions | Nguyễn Gia Phong | |
2021-11-29 | Use more efficient PRNG | Nguyễn Gia Phong | |
2021-11-29 | Fix stuck VIP | Nguyễn Gia Phong | |
Bodyguard landing from the sky looks cool as well. | |||
2021-11-29 | Bump to 2.4.5 2.4.5 | Nguyễn Gia Phong | |
2021-11-29 | Fix the malignant problem | Nguyễn Gia Phong | |
2021-10-31 | Remove pseudo motion blur | Nguyễn Gia Phong | |
2021-10-31 | Restore menu buttons behavior | Nguyễn Gia Phong | |
2021-10-30 | Eradicate Skeleton.jointlabels | Nguyễn Gia Phong | |
2021-10-30 | Reorder joints | Nguyễn Gia Phong | |
The following Python script was used for data conversion: from glob import iglob from pprint import pprint with open('data/joints.tsv') as f: joint_keys = f.readline().strip() joint_values = [line.strip().split('\t') for line in f] mapping = {str(i): v[0] for i, v in enumerate(joint_values)} mapping['-1'] = '-1' with open('data/joints.tsv', 'w') as f: print(joint_keys, file=f) for *rest, parent in sorted(joint_values, key=lambda v: int(v[0])): print(*rest, mapping[parent], sep='\t', file=f) with open('data/muscles.tsv') as f: muscle_keys = f.readline().strip() muscle_values = [line.strip().split('\t') for line in f] with open('data/muscles.tsv', 'w') as f: print(muscle_keys, file=f) for *rest, parent1, parent2 in muscle_values: print(*rest, mapping[parent1], mapping[parent2], sep='\t', file=f) order = [i for i, v in sorted(enumerate(joint_values), key=lambda p: int(p[1][0]))] for path in iglob('data/animations/*/frames/*'): with open(path) as f: anim_keys = f.readline().strip() anim_values = [line.strip() for line in f] with open(path, 'w') as f: print(anim_keys, file=f) for i in order: print(anim_values[i], file=f) | |||
2021-10-30 | Add missing source file 2.4.4 | Nguyễn Gia Phong | |
2021-10-29 | Sort imports and clean up 2.4.3 | Nguyễn Gia Phong | |
2021-10-29 | Update for gfz enums | Nguyễn Gia Phong | |
2021-10-29 | Make cheat keys configurable | Nguyễn Gia Phong | |
2021-10-29 | Make the rest keys configurable | Nguyễn Gia Phong | |
2021-10-28 | Reorganize key mappings | Nguyễn Gia Phong | |
2021-10-28 | Make some controls configurable | Nguyễn Gia Phong | |
2021-10-21 | Bump to 2.4.2 2.4.2 | Nguyễn Gia Phong | |
2021-10-20 | Move scores tracking to user data | Nguyễn Gia Phong | |
2021-10-20 | Use higher level callback for glfw | Nguyễn Gia Phong | |
2021-10-19 | Make the CHANGES log again | Nguyễn Gia Phong | |
2021-10-19 | Document build and contriib instructions | Nguyễn Gia Phong | |
2021-10-19 | Move joints and muscles data out of src 2.4.1 | Nguyễn Gia Phong | |
2021-10-19 | Move levels to data files | Nguyễn Gia Phong | |
2021-10-17 | Move config.ini out of src | Nguyễn Gia Phong | |
2021-10-02 | Remove unused Model methods | Nguyễn Gia Phong | |
2021-10-02 | Clean up unused functions and style 2.4.0 | Nguyễn Gia Phong | |
2021-10-02 | Convert 3D models to OFF | Nguyễn Gia Phong | |
2021-10-01 | Change a few more sounds | Nguyễn Gia Phong | |
2021-10-01 | Remove Skeleton.num_joints | Nguyễn Gia Phong | |
2021-10-01 | Reorganize animations | Nguyễn Gia Phong | |
2021-09-30 | Convert animations to TSV | Nguyễn Gia Phong | |
2021-09-30 | Remove export fn workaround | Nguyễn Gia Phong | |
2021-09-29 | Convert skeletal data to TSV and embed in src | Nguyễn Gia Phong | |
2021-09-25 | Migrate README to wiki | Nguyễn Gia Phong | |