Skip to content
This repository has been archived by the owner on Jul 27, 2020. It is now read-only.

Commit

Permalink
push to sync computers
Browse files Browse the repository at this point in the history
  • Loading branch information
GeneralGuy4872 committed Dec 30, 2019
1 parent 46e21e0 commit e7639ed
Show file tree
Hide file tree
Showing 19 changed files with 370 additions and 244 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@ core.autocrlf=false

*.c = linguist-language=C
*.h = linguist-language=C
*.ch = linguist-language=C
*.cc = linguist-language=C++
*.hh = linguist-language=C++
*.cchh = linguist-language=C++
*.C = linguist-language=C++
*.H = linguist-language=C++
*.CH = linguist-language=C++
*.m = linguist-language=Objective-C
*.mm = linguist-language=Objective-C++
*.xs = linguist-language=XS
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ Doc Recommends:
NEWS (and Olds)
---------------

Mixed line endings are intentional.

As of 28/10/2019, major changes to some of the oldest portions of the
outline are underway. these changes need to be propogated through the
entire project, and will result in major inconsistancies until finished.
Expand Down
18 changes: 0 additions & 18 deletions src/NotesOnCompiling

This file was deleted.

15 changes: 14 additions & 1 deletion src/baserender.messy
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,20 @@ enttyp__normalrender (int yzindex,int cullplane) {
struct enttyp * next_ent_ptr = ROOM->ent_ptr;
while (next_ent_ptr != NULL) {
if (raycast__visabledefault(next_ent_ptr->pos,cullplane) {
basentyp * basentity = &(montable[next_ent_ptr->race[0]->table][next_ent_ptr->race[0]->race]);
basentyp * basentity = (next_ent_ptr->race->poly == NULL) ?
montable[
next_ent_ptr->race->base[
next_ent_ptr->race->swap
]->table
][
next_ent_ptr->race[
next_ent_ptr->race->swap
]->race
] : montable[
next_ent_ptr->race->poly->table
][
next_ent_ptr->race->poly->race
];
baseclasstyp * baseclass = next_ent_ptr->class.notnull ? &(classtable[next_ent_ptr->class.role][next_ent_ptr->class.class][next_ent_ptr->class.mastery]) : NULL;
char16_t this_sprite;
attr_t this_attr;
Expand Down
1 change: 0 additions & 1 deletion src/class_cleric.csv

This file was deleted.

1 change: 0 additions & 1 deletion src/class_fighter.csv

This file was deleted.

1 change: 0 additions & 1 deletion src/class_magic_user.csv

This file was deleted.

1 change: 0 additions & 1 deletion src/class_rogue.csv

This file was deleted.

1 change: 0 additions & 1 deletion src/gemstones.csv

This file was deleted.

24 changes: 0 additions & 24 deletions src/legend.csv

This file was deleted.

Loading

0 comments on commit e7639ed

Please sign in to comment.