Animated fireplace on DOS

  Рет қаралды 18,847

FreeDOS

FreeDOS

Күн бұрын

Пікірлер: 46
@TonyJewell0
@TonyJewell0 22 күн бұрын
This is like asmr for retired c programmers like myself. Really enjoyed this. Thx.
@terrydaktyllus1320
@terrydaktyllus1320 24 күн бұрын
Thank you. As someone who does quite a bit of Bash and Python programming and "occasionally dabbles" in C, this was very informative and useful.
@freedosproject
@freedosproject 23 күн бұрын
You're very welcome!
@MaxUgly
@MaxUgly 4 күн бұрын
The last few months of python studies allow me to actually follow this video. Thank you, this one is getting saved!
@cetx
@cetx 24 күн бұрын
What a great project. FreeDOS is so fun.
@ahmad-murery
@ahmad-murery 23 күн бұрын
Once again, the blue screen of happiness. What a nice way to start a new day. Thanks Jim!
@freedosproject
@freedosproject 23 күн бұрын
Thanks for watching! I'm glad you liked the video.
@SusanAmberBruce
@SusanAmberBruce 16 күн бұрын
Lovely to watch your program progress
@MrJmvprivateer
@MrJmvprivateer 24 күн бұрын
This was great! I wish I had more time to play with FreeDOS. Its just ready to draw things to the screen at the drop of the hat. Modern graphics things mean I have to pull up X calls or whatever. I like how simple this was. Thanks for sharing and Happy Holidays!
@freedosproject
@freedosproject 23 күн бұрын
Thanks! The simple programs are the best. And I liked this one because it walks through everything, including tests and debugging along the way.
@williefleete
@williefleete 24 күн бұрын
The rug… is on FIRE
@Stefan_Dahn
@Stefan_Dahn 23 күн бұрын
As I remember back 30 years ago, programming a bit in Turbo Pascal those days, it is possible to re-program the "pixel-appearance" of all 255 ASCII chararters in the VGA. So you could create 255 different "flame" characters pixel by pixel - so you would have more details and choices available. Just an idea. 😉 Greetings from Germany.
@aidanm5578
@aidanm5578 10 күн бұрын
Very enjoyable video, thanks!
@rogerxxxxxxx
@rogerxxxxxxx 23 күн бұрын
Should do full screen fire effect.
@freedosproject
@freedosproject 23 күн бұрын
That would be cool! I was generating a small fireplace but it's easy enough to expand 'cols' to run this across the whole screen, from 1 to 80.
@MaxUgly
@MaxUgly 4 күн бұрын
It would be cool to see people run with this. Even slight different shades of green dependent on the fire for some lighting effects. It's such a tempting rabbit hole but promised myself to stick with python and actually 'finish' or get half proficient with something in life... Thanks for the awesome demo! First video about c (or any compiled language for that matter) I didn't feel lost watching!
@sirgalahamtroskipero4872
@sirgalahamtroskipero4872 16 күн бұрын
Very nice video! Very interesting and useful. Thank a lot!
@helmargesel3972
@helmargesel3972 23 күн бұрын
Thanks for sharing your knowledge
@anon_y_mousse
@anon_y_mousse 19 күн бұрын
Neat. I'll have to try this next time I'm playing around with FreeDOS. I can see using this in an ASCII text based game.
@JavisoGaming
@JavisoGaming 24 күн бұрын
This was awesome! Thank you!
@eugenetswong
@eugenetswong 23 күн бұрын
Thanks, Jim!
@nightwintertooth9502
@nightwintertooth9502 15 күн бұрын
Should really consider a particle system and a render function. This can be done such much better but it is a good start when learning so i appreciate it for what it is
@johnrickard8512
@johnrickard8512 21 күн бұрын
I'm installing it now in QEMU. I hope soon to create Notepad++ but for DOS to get my toes wet in computing once again.
@marccaselle8108
@marccaselle8108 23 күн бұрын
Question about SBEMU and FREEDOS. I cant get SBEMU to output to just headphones and i cant turn down the volume of SBEMU its always too loud. Is there any way to fix this? Is the intel laptop im using to blame? Until this gets fixed i will not use SBEMU or Freedos anymore.
@swordofkings128
@swordofkings128 18 күн бұрын
Ahhh... all it's missing is joy to the world or something playing through the PC speaker!
@djsbriscoe
@djsbriscoe 23 күн бұрын
Have you got any copies of the C files used in these examples? It would save having to type it all in and serve as a test for setting up the dev system. Thanks.
@freedosproject
@freedosproject 23 күн бұрын
I've shared the source code here: github.com/freedosproject/fireplace
@ziprock
@ziprock 17 күн бұрын
this tutorial is fire yo
@РусланЗаурбеков-з6е
@РусланЗаурбеков-з6е 23 күн бұрын
How nostalgic ))))
@NotKyleChicago
@NotKyleChicago 23 күн бұрын
Are 14 and 6 the same RGB, just different intensity? 14= 1110 and 6= 0110, so it seems that's the case, but I've not studied C, so I'm not sure.
@freedosproject
@freedosproject 23 күн бұрын
You got it! 14 and 6 are the same RGB color, but with different iRGB intensities. I did another video on the channel about why the DOS colors are the way they are, which also explains why 6 is "brown" (or "orange") instead of yellow.
@maxmuster7003
@maxmuster7003 21 күн бұрын
REM ;------------------------------------------------ REM ; color components default values red green blue REM ;------------------------------------------------ REM 0 black 00 00 00 REM 1 blue 00 00 2A REM 2 green 00 2A 00 REM 3 cyan 00 2A 2A REM 4 red 2A 00 00 REM 5 magenta 2A 00 2A REM 6 brown 2A 2A 00 REM 7 light grey 2A 2A 2A REM 8 grey 00 00 15 REM 9 light blue 00 00 3F REM A light green 00 2A 15 REM B light cyan 00 2A 3F REM C light red 2A 00 15 REM D pink 2A 00 3F REM E yellow 2A 2A 15 REM F white 2A 2A 3F REM ;------------------------------------------------
@JohnnieMartynov
@JohnnieMartynov 23 күн бұрын
Nice. 👍
@smileynetsmileynet7922
@smileynetsmileynet7922 18 күн бұрын
Something of these color capabillities, might someday make its way into my language, PNF.
@jacobwerner8533
@jacobwerner8533 23 күн бұрын
Ill have to try that c compiler sometime. i tried pacific a while ago, but i think it uses an old c standard.
@freedosproject
@freedosproject 23 күн бұрын
I like using OpenWatcom C. I also love IA-16 GCC.
@tubeDude48
@tubeDude48 24 күн бұрын
It can't find :fed" or "wcl". I installed the full package. I used edit, is that OK?
@freedosproject
@freedosproject 23 күн бұрын
If you installed FreeDOS 1.3, both Fed and OpenWatcom C should be installed if you install everything. But they are not added to the path by default (because you want to be careful about environment memory). If you run the OWSETUP.BAT file, that will set up your OpenWatcom environment. I already added Fed as an alias on my system (I did another video on the channel about setting up my development environment)
@misterpopo3736
@misterpopo3736 17 күн бұрын
the channel has a video on how to put apps like fed in the path
@tubeDude48
@tubeDude48 17 күн бұрын
@@misterpopo3736 - I'll check that out. Thanks!
@GalileudoLinux
@GalileudoLinux 24 күн бұрын
Very good Best regards, GalileudoLinux.!
@kingofgamer1102
@kingofgamer1102 23 күн бұрын
🔥 🔥 🔥
@caruccio
@caruccio 20 күн бұрын
You said 49 then wrote 46. Nice video btw
@_specialneeds
@_specialneeds 9 күн бұрын
Don't buy Apple products.! Spport right to repair.
Simulate baud rates with this Linux program
4:41
FreeDOS
Рет қаралды 2,4 М.
Players push long pins through a cardboard box attempting to pop the balloon!
00:31
Noodles Eating Challenge, So Magical! So Much Fun#Funnyfamily #Partygames #Funny
00:33
Twin Telepathy Challenge!
00:23
Stokes Twins
Рет қаралды 135 МЛН
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 199 МЛН
Batch 60: How to Arrange Data for T-Test in R and Perform T-Test - Step-by-Step Guide"
34:43
Data Analysis &Visualization: R & Python Tutorials
Рет қаралды 5
Video resolutions on FreeDOS
14:09
FreeDOS
Рет қаралды 7 М.
Coding Adventure: Rendering Text
1:10:54
Sebastian Lague
Рет қаралды 751 М.
A look back at original style C
17:35
FreeDOS
Рет қаралды 37 М.
Can You Solve Apple's Split The Coins Riddle?
12:16
MindYourDecisions
Рет қаралды 313 М.
the 7zip rabbit hole goes extremely deep. (1000's of crashes)
12:50
A Modern OS... on a Floppy Disk?!
28:59
Michael MJD
Рет қаралды 196 М.
Reverse engineering Microsoft BASIC
26:51
Ben Eater
Рет қаралды 84 М.
this is what happens when you let the intern code
12:50
Low Level
Рет қаралды 261 М.
FreeDOS 1.3 is it worth it for Retro DOS PC Gaming
10:56
PhilsComputerLab
Рет қаралды 61 М.
Players push long pins through a cardboard box attempting to pop the balloon!
00:31