home *** CD-ROM | disk | FTP | other *** search
- main() /* poke.c -- demonstrates use of poke to effect monochrome*/
- /* monochrome screen attributes*/
- {
- int i;
- /* color use: 753665L; monochrome use 720896L */
- int attribute_byte;
- int c;
- long a=720897L;
- cls();
- puts("\n\nSelect your mode:");
- puts("\t1 Blinking");
- puts("\t2 Blinking and highlighted");
- puts("\t3 Blinking and underlined");
- puts("\t4 Blinking and reversed");
- puts("\t5 Reversed video");
- puts("\t6 Underlined");
- puts("\t7 Highlighted");
- puts("\t8 Highlighted and underlined");
- puts("\tEsc to exit gracefully");
-
- if(( c = getchar()) != EOF)
- switch(c)
- {
- case '1': attribute_byte = 212;
- break;
- case '2': attribute_byte = 222;
- break;
- case '3': attribute_byte = 129;
- break;
- case '4': attribute_byte = 240;
- break;
- case '5': attribute_byte = 112;
- break;
- case '6': attribute_byte = 1;
- break;
- case '7': attribute_byte = 95;
- break;
- case '8': attribute_byte = 121;
- break;
- case 27: exit();
- default:
- puts("\nNot an acceptable answer. Run me again.");
- exit();
- }
-
- cls();
- puts("Why don't word processing porgrams use these features?");
- for (i = 0; i < 53; i++, a += 2)
- poke(a, attribute_byte);
- }