about summary refs log tree commit diff stats
path: root/main.lua
Commit message (Collapse)AuthorAgeFilesLines
...
* find textKartik K. Agaram2022-06-021-5/+43
|
* .Kartik K. Agaram2022-06-021-1/+1
|
* renameKartik K. Agaram2022-06-021-1/+1
|
* bugfix: undo drawing creationKartik K. Agaram2022-06-021-0/+1
| | | | | Also clean up drawing state to make sure we don't get into hard-to-debug situations.
* after much struggle, a brute-force undoKartik K. Agaram2022-06-021-0/+5
| | | | | | | | | Incredibly inefficient, but I don't yet know how to efficiently encode undo mutations that can span multiple lines. There seems to be one bug related to creating new drawings; they're not spawning events and undoing past drawing creation has some weird artifacts. Redo seems to consistently work, though.
* .Kartik K. Agaram2022-05-291-6/+0
|
* selecting text and deleting selectionsKartik K. Agaram2022-05-291-0/+11
| | | | | | I've written a few tests for delete_selection, but the way different operations initialize the selection seems fairly standard and not worth testing so far.
* update some documentationKartik K. Agaram2022-05-291-3/+6
|
* move some codeKartik K. Agaram2022-05-281-28/+0
| | | | | I had this idea originally to keep text.lua oblivious to drawings. But that hasn't been true for some time. Losing battle.
* .Kartik K. Agaram2022-05-271-1/+1
|
* assert for a bug I saw a while ago but can no longer reproduceKartik K. Agaram2022-05-251-0/+1
| | | | | I saw screen_top not at start of screen line, but at cursor location in middle of line.
* no, make sure to compute line width after screen dimensionsKartik K. Agaram2022-05-251-4/+4
|
* couple more testsKartik K. Agaram2022-05-251-17/+19
| | | | Along with the App helpers needed for them.
* get rid of debug variablesKartik K. Agaram2022-05-231-9/+4
|
* keep one screen line of overlap on pagedownKartik K. Agaram2022-05-231-1/+1
| | | | | | | | | | | | | | | | | | | | I'm now extracting the concern of computing line.screen_line_starting_pos out of Text.draw. Earlier I had to make sure I ran through the whole line to compute screen_line_starting_pos, but that had the side-effect of updating Screen_bottom1.pos as well with lines that had never been rendered. In this process I hit my first bug due to an accidental global. It doesn't show up in the patch because I accidentally deleted a local declaration. (I thought I didn't need screen_line_starting_pos anymore, deleted everywhere, then brought it back everywhere from the bottom of the function up, but forgot to put back the very first occurrence.) The amount of yoyoing this caused between App.draw and Text.draw, I very much have spaghetti on my hands. Accidental globals are _terrible_ in a program with tests. Cross test contamination X-(
* a few tests for pageup, and a bugfixKartik K. Agaram2022-05-231-10/+18
| | | | It wasn't screen-line aware. Now it is.
* disable all debug printsKartik K. Agaram2022-05-231-2/+2
|
* .Kartik K. Agaram2022-05-231-1/+2
|
* couple of tests for cursor downKartik K. Agaram2022-05-231-2/+2
|
* bugfix: don't rely on Screen_bottom1 while scrollingKartik K. Agaram2022-05-231-1/+4
| | | | | Setting up the test just right to test the thing I want to test was a rube goldberg machine of constants.
* first successful pagedown test, first bug found by testKartik K. Agaram2022-05-231-7/+8
| | | | | | | | | | | | | | | | | | | I also really need to rethink how people debug my programs. My approach of inserting and deleting print() takes a lot of commitment. I need my old trace-based whitebox testing idea. However, in my past projects I never did figure out a good framework for tweaking how verbose a trace to emit. Perhaps that's too many knobs. Perhaps we just need a way to run a single test with the most verbose trace possible. Then it's just a matter of having the trace tell a coherent story? But even if the trace stays out of program output in that situation, it's still in the programmer's face in the _code_. Ugh. Current plan: ship program with maximum tests and zero commented-out prints. If you want to debug, insert prints. This is better than previous, text-mode, projects just by virtue of the stdout channel being dedicated to debug stuff.
* fold variables for screen dimensions into the app frameworkKartik K. Agaram2022-05-221-8/+8
|
* basic test-enabled frameworkKartik K. Agaram2022-05-221-26/+25
| | | | | Tests still have a lot of side-effects on the real screen. We'll gradually clean those up.
* renameKartik K. Agaram2022-05-221-1/+3
|
* beginnings of a test harnessKartik K. Agaram2022-05-221-0/+1
| | | | | | | | | | | | | | | | | | | I have no fucking idea what I'm doing. All I know is that there's still too many goddamn bugs[1]. Test motherfucking harness or bust. For starters this is just the default love.run from https://love2d.org/wiki/love.run [1] The following file crashes if you repeatedly press cursor-down: << a b c ```lines ``` x >>
* bugfix: printing the first part of a line at the bottom made it seem ↵Kartik K. Agaram2022-05-211-9/+17
| | | | | | non-wrapping Still lots wrong here.
* I feel confident now that page-down is working.Kartik K. Agaram2022-05-211-2/+3
|
* beginning of a new approach to scroll+wrapKartik K. Agaram2022-05-211-25/+31
| | | | | | | So far I've just changed how existing variables are organized, and put some scaffolding in place for dealing with the new types. Next up: rewriting the code for scrolling to something that feels more obviously correct.
* bugfix: escape key to hide online helpKartik K. Agaram2022-05-211-0/+6
|
* support for naming pointsKartik K. Agaram2022-05-211-0/+27
| | | | There's still an absence of affordance showing when you're in naming mode.
* keep cursor on screen when pressing 'down'Kartik K. Agaram2022-05-201-1/+1
|
* reduce ambitions a bit: page up/down need not start screen from the middle ↵Kartik K. Agaram2022-05-201-13/+14
| | | | | | of a line But we still have work to do for cursor up/down.
* ensure Filename is writable when opened outside a terminalKartik K. Agaram2022-05-201-1/+1
| | | | Thanks Jimmy Miller for reporting this.
* snapshot - no, that's all wrongKartik K. Agaram2022-05-201-9/+11
| | | | | I've been only thinking about up arrow when cursor is at top of screen. Hopefully this is better.
* new globals: draw partial screen line up topKartik K. Agaram2022-05-201-0/+3
| | | | | I'm not setting these yet. Rendering seems to be working after manually setting them.
* start using some globalsKartik K. Agaram2022-05-201-1/+1
|
* moveKartik K. Agaram2022-05-201-2/+4
|
* start remembering where the cursor is drawn in pxKartik K. Agaram2022-05-201-0/+2
| | | | We'll start using this in cursor up/down motions.
* extract a functionKartik K. Agaram2022-05-201-4/+1
|
* bugfix: text past cursor was rendered red on wrapped linesKartik K. Agaram2022-05-191-0/+1
|
* change text cursor shapeKartik K. Agaram2022-05-191-2/+3
|
* clicking now moves the cursor even on long, wrapped linesKartik K. Agaram2022-05-191-2/+2
|
* make text and drawings the same widthKartik K. Agaram2022-05-191-5/+3
|
* commentKartik K. Agaram2022-05-191-6/+1
|
* eliminate assumptions that line length == size in bytesKartik K. Agaram2022-05-191-3/+3
|
* snapshot: wrapping long lines at word boundariesKartik K. Agaram2022-05-191-1/+3
| | | | | | Still not working: clicking on text to move the cursor aborts up/down motions still move by logical lines rather than screen lines
* a few more integer coordinatesKartik K. Agaram2022-05-191-1/+1
|
* this is a bit clearerKartik K. Agaram2022-05-191-2/+2
|
* redo y computationsKartik K. Agaram2022-05-191-4/+8
|
* simplerKartik K. Agaram2022-05-191-1/+1
|
1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377