|
AI4U++ Textbook Citeseer - AI4U mind.txt - CPAN Forums A.I. Zone AGI (read) Join AI Chat AI Meetup Day AI Poll: Results aima-talk CogNews comp.lang.perl.misc Extropians BBS KurzweilAI.net perl-AI Mailing List archived at Google Slashdot perl 6 etc. Resources AI FAQ: Software AI4U FAQ AI Wiki AIMind-I.com BlogShares Member Sites and Others Linking To Amazon AI4U 0595259227 Agents Portal GameDev.net GreatMindsWorking Amazon AI4U 0595654371 Codepaste CPAN del.icio.us perl DMoz -- Perl FAQTs -- Perl Mind.Forth AI & Dev Journal & User Manual Seed AI & Dev Journal & User Manual Singularity Standards in AI TBR Theory of Cognitivity Variables in AI4U Wikipedia Wikipedia - Perl 6 Weblogs Via Technorati 2lmc spool ( q.v.) Ahoyhoy.org ( q.v.) Blog HOT or NOT: weblogs with a perl focus. Eckel, Bruce ( q.v.) fiddle2 ( q.v.) fozbaca.org ( q.v.) Hunt, Kenneth ( q.v.) Dennis Kane Larsen, F.M. ( q.v.) Nadeau, Charles ( q.v.) Smith, Jeremy ( J$) webmaster ( q.v.) YAWN ( q.v.) |
________
/ \
( Motorium ) _______
________ \________/\ / \ ________
/ \ \/ main \ / \
( Volition )-----------( Alife )-----------( Security )
\________/ ________ /\ loop /\ _________ \________/
/ \/ \_______/ \/ \
( Think ) | ( Sensorium )
\________/ ____V____ \_________/
/ \ |
( Emotion ) ____V___
\_________/ / \
( Audition )
\________/
Next
implement the
Audition module as part of the general AI
framework from|
Sun.4.FEB.2007 Perl for Modular AI
http://modularai.messageforums.net/perl-for-modular-ai_t28.html Wed.13.AUG.2003 -- mind.pl
#!/usr/bin/perl -w
#
sub security;
sub sensorium;
sub emotion;
sub think;
sub volition;
sub motorium;
while (1) {
security();
sensorium();
emotion();
think();
volition();
motorium();
}
sub security {
# http://mentifex.virtualentity.com/acm.html#security
} def;
sub sensorium {
# http://mentifex.virtualentity.com/acm.html#sensorium
print "Press ENTER or ESCAPE key: ";
$_ = <STDIN>;
exit if (/^\027/);
} def;
sub emotion {
# http://mentifex.virtualentity.com/acm.html#emotion
} def;
sub think {
# http://mentifex.virtualentity.com/acm.html#think
} def;
sub volition {
# http://mentifex.virtualentity.com/acm.html#volition
} def;
sub motorium {
# http://mentifex.virtualentity.com/acm.html#motorium
} def;
#---
Sun.10.AUG.2003 in the evolution of Do-It-Yourself Artificial Intelligence.
This weblog invites all Perl programmers to implement the
main Alife Mind loop of the simplest artificial intelligence. |